gpt4 book ai didi

Spring MVC 3 : Is consumes supposed to disambiguate request mappings?

转载 作者:行者123 更新时间:2023-12-03 17:50:38 24 4
gpt4 key购买 nike

我在 Spring MVC 3 应用程序中有两个请求映射,一个需要 jsonxml ,另一个需要 application/x-www-form-urlencoded数据。例子:

@RequestMapping(value={"/v1/foos"}, method = RequestMethod.POST, consumes={"application/json", "application/xml"})
public FooDTO createFoo(@RequestBody FooDTO requestDTO) throws Exception {
...
}

@RequestMapping(value={"/v1/foos"}, method = RequestMethod.POST, consumes="application/x-www-form-urlencoded")
public FooDTO createFooWithForm(@ModelAttribute FooDTO requestDTO) throws Exception {
...
}

我期望的不同 consumes参数使每个请求都是唯一的,尽管我得到了 java.lang.IllegalStateException: Ambiguous handler methods mapped... .

consumesproduces使请求独一无二?有任何想法吗?

编辑 1:如果您设置 content-type,则为此增加权重。在标题中而不是使用 consumes ,这确实有效并使它们独一无二: headers="content-type=application/x-www-form-urlencoded .或许 consumes 存在错误?

编辑 2:我们使用的是 Spring 3.1.1.RELEASE。

最佳答案

这已由 Marten Deinum 在 Spring 论坛 ( here ) 上解决:

You should change both the HandlerMapping as well as the HandlerAdapter (use the RequestMappingHandlerAdapter).

In theory it should work if it doesn't feel free to register an issue.



这个问题的解决方案是在我的 servlet 配置中使用正确的 HandlerMapping 和 HandlerAdapter:
<bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping"/>
<bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter"/>

谢谢马丁。

关于 Spring MVC 3 : Is consumes supposed to disambiguate request mappings?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10429031/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com