如果我在@RequestMapping("/api/v0.1")
类中使用多级网址,我会收到以下异常:
java.lang.IllegalStateException: Ambiguous mapping found. Cannot map 'userController'
bean method getUsers()|to {[/api/v0.1]}: There is already 'userController' bean
method getUser(java.lang.String) mapped.
就像方法级别映射完全没有考虑在内一样
但是如果我放@RequestMapping("/api")
即删除/v0.1
部分就可以了。
以下是剥离最小情况的配置:
@Controller
@RequestMapping("/api/v0.1")
public class UserController {
@RequestMapping(value = "/users")
@ResponseBody
public List<User> getUsers() {
return null;
}
@RequestMapping(value = "/users/{username}")
@ResponseBody
public User getUser(@PathVariable String username) {
return null;
}
}
的web.xml
<servlet-mapping>
<servlet-name>Spring MVC Dispatcher Servlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
servlet的context.xml中:
<!-- Configures the @Controller programming model -->
<mvc:annotation-driven />
<!-- Forwards requests to the "/" resource to the "welcome" view -->
<mvc:view-controller path="/" view-name="home"/>
<!-- Handles HTTP GET requests for /assets/** by efficiently serving up static resources in the ${webappRoot}/resources/ directory -->
<mvc:resources mapping="/assets/**" location="/assets/" />
我正在使用春季3.1。我还尝试将alwaysUseFullPath
属性设置为RequestMappingHandlerMapping
bean的true,但它没有改变这种情况。
答案 0 :(得分:2)
非常有趣的问题 - 我检查了可能发生的事情,你是对的,“v0.1”实际上是通过组合来自控制器和路径的路径来抛弃org.springframework.util.AntPathMatcher
来创建完整的URI路径从映射的方法。如果它在Controller中看到“file.extension”类型的模式,那么它完全忽略了方法的路径映射 - 这就是为什么@PathVariable
被忽略的原因。
我不确定这是否是Spring MVC中的错误或预期行为,临时修复将与您已经提到的一致 -
1.从Controller的RequestMapping中删除“v0.1”并使其无延伸地说v0_1
2.将此映射放在映射方法中:
@Controller
@RequestMapping("/api")
public class UserController {
@RequestMapping(value = "/v0.1/users")
@ResponseBody
public List<User> getUsers() {
return null;
}
@RequestMapping(value = "/v0.1/users/{username}")
@ResponseBody
public User getUser(@PathVariable String username) {
return null;
}
}
答案 1 :(得分:0)
您应该使用@RequestMapping(value = "/{version:.*}/users")
来包含点'。'在路径变量