我在控制器类中有一个新方法:
@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,并且已打开“自动构建”。似乎服务器没有接收到更改。有什么建议吗?