4

我们使用 Spring MVC 开发了一个标准的 Java Web 应用程序,并且最近尝试从 3.0.6 升级到 3.2.0。我们几乎所有的 servlet 响应都是 JSP 或 Json 视图,但也有一些是 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?谢谢

理查德

4

4 回答 4

16

我通过从类中删除重复 <mvc:annotation-driven/>的 xml 配置或 @EnableWebMVC注释来解决问题,因为 Spring 文档对此发出警告,并且仅通过合同允许一次。

于 2015-08-18T21:10:12.627 回答
8

使用 spring 3.2 更好地解决使用ContentNegotiationManager. 它对我有用。您可以使用静态字段org.springframework.http.MediaType.APPLICATION_JSON_VALUE来提及媒体类型。检查以下代码:

<bean class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver">
        <property name="contentNegotiationManager">
            <bean class="org.springframework.web.accept.ContentNegotiationManager">
                <constructor-arg>
                    <bean class="org.springframework.web.accept.PathExtensionContentNegotiationStrategy">
                        <constructor-arg>
                            <map>
                                <entry key="json">
                                    <util:constant static-field="org.springframework.http.MediaType.APPLICATION_JSON_VALUE" />
                                </entry>
                                <entry key="xml">
                                    <util:constant static-field="org.springframework.http.MediaType.APPLICATION_XML_VALUE" />
                                </entry>
                            </map>
                        </constructor-arg>
                    </bean>
                </constructor-arg>
            </bean>
        </property>

        <property name="defaultViews">
            <list>
               <!-- default views -->
            </list>
        </property>

    </bean>

为此,您必须在 dispatcher-servlet.xml 文件中使用 util 模式,即xmlns:util="http://www.springframework.org/schema/util"模式位置 http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring- util-3.0.xsd

于 2013-02-18T07:03:22.090 回答
0

我认为您可以使用 ContentNegotiationManagerFactoryBean 更轻松地实现相同的目标。默认情况下,它首先检查 URL 路径扩展名,然后是 URL 中的格式属性(例如 ..../accounts?format=pdf),然后是标准 HTTP Accept 标头属性。格式参数的使用默认是关闭的。

<bean id="contentNegotiationManager"
      class="org.springframework.web.accept.ContentNegotiationManagerFactoryBean">
    <property name="defaultContentType" value="text/html" />

    <property name="mediaTypes">
        <map>
            <entry key="json" value="application/json" />
            <entry key="pdf" value="application/pdf" />
            <entry key="pdf" value="text/html" />
       </map>
    </property>
</bean>

<bean class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver">
        <property name="contentNegotiationManager" ref=""/>
</bean>

如果您使用 JavaBeans 激活框架 JAF,则不需要 mediaTypes 部分。只需将activation.jar 放在类路径中。

您是否尝试过这个并且您是否也得到了类转换异常?

于 2013-04-23T08:09:56.337 回答
-1

好吧,您发布的错误基本上是说 Spring 没有办法将您提供的字符串(例如“application/pdf”)转换为 MediaType 对象。我猜 ContentNegotiatingViewResolver 将它的 mediaTypes 映射更改为 Map 到 Map。你可以尝试这样的事情:

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

注意:我是凭记忆做的,所以我可能打错了。基本上,您需要输入值是 MediaTypes,而不是字符串。

于 2013-02-01T19:55:43.950 回答