SpringBoot - @RequestMapping(name = "/home") - @RequestMapping(value = "/home")
SpringBoot - @RequestMapping(name = "/home") - @RequestMapping(value = "/home")
我在 Spring 启动时遇到了一些问题。
当我使用 @RequestMapping(value = "/home")
时,一切正常。但是当我使用 @RequestMapping(name = "/home")
时,我的网站不会出现。
所以我的问题是:@RequestMapping(name = "/home")
和 @RequestMapping(value = "/home")
有什么区别?
据我所知,@RequestMapping 中的名称用于为映射分配名称。
What is Name?
As In servlet mapping we assign name to the servlet class and url pattern
in spring we can also assign name to the mapping.
但是values是不同的,它是用来定义URLPattern的,通过它我们可以调用Controller的方法class。
我在 Spring 启动时遇到了一些问题。
当我使用 @RequestMapping(value = "/home")
时,一切正常。但是当我使用 @RequestMapping(name = "/home")
时,我的网站不会出现。
所以我的问题是:@RequestMapping(name = "/home")
和 @RequestMapping(value = "/home")
有什么区别?
据我所知,@RequestMapping 中的名称用于为映射分配名称。
What is Name?
As In servlet mapping we assign name to the servlet class and url pattern
in spring we can also assign name to the mapping.
但是values是不同的,它是用来定义URLPattern的,通过它我们可以调用Controller的方法class。