我最近一直在阅读 Spring 3.2,现在我正在使用 Spring 2.5 尝试以下代码。从我读过的内容来看,这应该意味着它应该映射profile/tags/me
。然而事实并非如此。它只是抛出一个 No mapping found for HTTP request with URI ...
. 代码有什么问题,或者 Spring 2.5 不像 Spring 3 那样工作?
使用 Spring 2.5 时的问题
@Controller
@RequestMapping("/profile/tags")
public class ProfileController { ... }
这是 ProfileController 类中的方法:
@RequestMapping(value = "/me", method = RequestMethod.GET)
public String show(@RequestParam final long id, final ModelMap model) { ... }