0
這是我見過的幾個例子,其中@RequestMapping坐在一個控制器的類名以上關於Spring MVC中一個非常基本的問題:將@requestMapping映射到整個類的用法是什麼?
@RequestMapping
public class somethingController {
.
.
.
}
我understan使用RequestMapping的,當涉及到的方法,但我無法理解將其映射到整個班級的用法。它是幹什麼用的?
在此先感謝。
這對我來說很明顯,但在這個主題之後,訪問具有自己價值的方法的地址是什麼。例如在RequestMapping @RequestMapping(value =「new」,method = RequestMethod.GET)處添加一個值給method1 感謝預覽答案 – Ccortina
如果使用'RequestMapping(value =「/ new」)註釋method1 ',該方法的URL將是'/ foo/new'。這在http://static.springsource.org/spring/docs/3.2.x/spring-framework-reference/htmlsingle/#mvc-ann-requestmapping中描述 –