Spring rest controller returns 404
问题 My rest controller ,which is written by spring, returns 404 but when I debug over Eclipse , I see that it comes to my method and returns result but result is still 404. Controller is like: @RestController @RequestMapping("admin/context") public class ApplicationAdmin { @Autowired private ApplicationContextService applicationContextService; @RequestMapping(value="/monitor",method = RequestMethod.GET, produces = "application/json") @ResponseStatus(HttpStatus.OK) public Response monitorContexts(