SpringMVC之配置内容类型协商管理器

当不希望使用 SpringMVC根据 文件后缀来决定文件类型时,使用内容类型协商管理器进行配置:

(应用于406 Not Acceptable错误)

 

 

<mvc:annotation-driven content-negotiation-manager="contentNegotiationManager" />

<bean id="contentNegotiationManager" class="org.springframework.web.accept.ContentNegotiationManagerFactoryBean">
        <property name="favorPathExtension" value="false" /> <!-- 根据后缀名和MimeType对应表决定请求的媒体类型,不启用 -->
        <property name="favorParameter" value="false" /> <!-- 根据请求参数名为format决定请求的媒体类型,不启用 -->
        <property name="ignoreAcceptHeader" value="false" /> <!-- 根据请求头中的Accept决定媒体类型,启用 -->
    </bean>

 

 

你可能感兴趣的:(springMVC)