gpt4 book ai didi

Spring 3.2 内容协商类转换异常

转载 作者:行者123 更新时间:2023-12-03 18:13:06 24 4
gpt4 key购买 nike

我们使用 Spring MVC 开发了一个标准的 Java Web 应用程序,最近尝试从 3.0.6 升级到 3.2.0。我们几乎所有的 servlet 响应都是 JSP 或 Json View ,但也有一些是 pdf 请求,扩展名为“pdf”。

在 Spring 3.0.6
我们有这个设置,取自 Spring MVC 文档。

<bean class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver">
<property name="mediaTypes">
<map>
<entry key="pdf" value="application/pdf"/>
<entry key="html" value="text/html"/>
<entry key="json" value="application/json"/>
</map>

与 XMLViewResolver 结合使用效果很好。

更新到3.2.0后,出现一个故障:
Error creating bean with name' org.springframework.web.servlet.view.ContentNegotiatingViewResolver#0' defined in class path  resource [dispatcher-test-servlet.xml]: Invocation of init method failed; nested exception is 

java.lang.ClassCastException: java.lang.String cannot be cast to org.springframework.http.MediaType'

在调查了文档和一些博客后,此配置似乎有效:
<bean class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver">
<property name="contentNegotiationManager">
<bean class="org.springframework.web.accept.ContentNegotiationManager">
<constructor-arg>
<list>
<!-- These are evaluated in order -->
<!-- Is there a media type based on suffix? -->
<bean class="org.springframework.web.accept.PathExtensionContentNegotiationStrategy">
<constructor-arg>
<map>
<entry key="html" value="text/html" />
<entry key="json" value="application/json" />
<entry key="pdf" value="application/pdf" />
</map>
</constructor-arg>
</bean>
<!-- Else use request header -->
<bean
class="org.springframework.web.accept.HeaderContentNegotiationStrategy">

</bean>
</list>
</constructor-arg>
</bean>
</property>

但是,我们尝试使用此配置运行新的 Spring MVC 测试框架,并再次获得 ClassCast 异常,因此测试框架似乎没有以与应用程序运行时相同的方式初始化 bean...
有没有人对如何在 Spring 3,2 中以健壮的方式配置 ContentNegotiatingViewResolver 有明确的解释?
谢谢

理查德

最佳答案

我通过删除重复解决了这个问题<mvc:annotation-driven/>来自 xml 配置
或者@EnableWebMVC来自类的注释
因为 spring 文档对此发出警告,并且契约(Contract)仅允许一次。

关于Spring 3.2 内容协商类转换异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14631992/

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