美文网首页
The resource identified by this

The resource identified by this

作者: KardelShaw | 来源:发表于2018-04-20 11:20 被阅读0次

    使用springmvc,前端发出请求时返回json格式时,报了以上错误,错误码406。

    读了参考文章后,查看spring的xml配置,是支持json格式转换的

    <bean class="com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter">
      <property name="supportedMediaTypes">
        <list>
          <value>text/html;charset=UTF-8</value>
          <value>application/json</value>
        </list>
      </property>
    </bean>
    

    接着再回到Controller的方法里,就发现了问题:第二行,把text/json改为application/json,问题解决

    @ResponseBody
    @GetMapping(produces = "text/json;charset=utf-8")
    public ResultVO getMethod() {
        //..
    }
    

    参考文章

    Spring MVC控制器用@ResponseBody声明返回json数据报406的问题

    The resource identified by this request is only capable of generating responses with characteristics

    相关文章

      网友评论

          本文标题:The resource identified by this

          本文链接:https://www.haomeiwen.com/subject/fteakftx.html