I am trying to adapt the REST Controller example on the Spring Boot website. Unfortunately I\'ve got the following error when I am trying to access the localhost:8080/
localhost:8080/
Replace @RequestMapping( "/item" ) with @GetMapping(value="/item", produces=MediaType.APPLICATION_JSON_VALUE).
@RequestMapping( "/item" )
@GetMapping(value="/item", produces=MediaType.APPLICATION_JSON_VALUE)
Maybe it will help somebody.