17
Spring Boot: Неможливо отримати доступ до контролера REST на localhost (404)
Я намагаюся адаптувати приклад контролера REST на веб-сайті Spring Boot. На жаль, під час спроби отримати доступ до localhost:8080/itemURL-адреси я отримав таку помилку . { "timestamp": 1436442596410, "status": 404, "error": "Not Found", "message": "No message available", "path": "/item" } POM: <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>SpringBootTest</groupId> <artifactId>SpringBootTest</artifactId> <version>0.0.1-SNAPSHOT</version> <properties> …
105
java
rest
spring-boot