具有RequestMapping批注的新方法返回404

时间:2019-09-22 02:16:41

标签: eclipse spring-mvc tomcat7 request-mapping

我在控制器类中有一个新方法:

@RequestMapping(value = "/getExample", method = RequestMethod.GET)
    public @ResponseBody String getExample(final HttpServletRequest request,
            final HttpServletResponse response) throws Exception {
...

但是当我打电话给例如localhost:8081/App/api/getExample?param=1

我正在使用Apache Tomcat7。我正在使用Eclipse,并且已打开“自动构建”。似乎服务器没有接收到更改。有什么建议吗?

0 个答案:

没有答案