是否可以在 Spring MVC 中进行自动 url 映射?例如,urlhttp://localhost/eshop/products
调用 eshop 模块中的 ProductsController 而没有显式的 @RequestMapping。系统应该知道第一个参数是一个模块,第二个参数是一个控制器。每次创建新控制器时,我都不想在 web.xml 或 @RequestMapping 中进行任何更改。
问问题
1237 次
1 回答
3
请检查此链接 http://static.springsource.org/spring/docs/3.0.0.M3/reference/html/ch16s10.html
Spring MVC 的约定优于配置
于 2012-11-16T10:30:01.010 回答