码迷,mamicode.com
首页 > 其他好文 > 详细

Could not find acceptable representation

时间:2018-01-22 21:21:36      阅读:1042      评论:0      收藏:0      [点我收藏+]

标签:false   app   repr   got   tac   pes   accept   reac   通过   

报了一个这个异常:

org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation

通过这篇文章找到了“favorPathExtension”关键字,
Spring Boot完美解决(406)Could not find acceptable representation原因及解决方法
进而找到了这篇文章中的方法,解决了问题
SpringMVC restful风格

    <mvc:annotation-driven content-negotiation-manager="contentNegotiationManager" />
    
    <bean id="contentNegotiationManager"
          class="org.springframework.web.accept.ContentNegotiationManagerFactoryBean">
        <property name="favorPathExtension" value="false" />
        <property name="favorParameter" value="true" />
        <property name="parameterName" value="mediaType" />
        <property name="ignoreAcceptHeader" value="true"/>
        <property name="useJaf" value="false"/>
        <property name="defaultContentType" value="application/json" />

        <!--<property name="mediaTypes">
            <map>
                <entry key="json" value="application/json" />
                <entry key="xml" value="application/xml" />
            </map>
        </property>-->
    </bean>

Could not find acceptable representation

标签:false   app   repr   got   tac   pes   accept   reac   通过   

原文地址:https://www.cnblogs.com/liqipeng/p/8330974.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!