美文网首页
零零商城之异常处理大全(持续更新ing...)

零零商城之异常处理大全(持续更新ing...)

作者: 某某的某某徐 | 来源:发表于2017-08-13 19:15 被阅读0次

    一:@ResponseBody将pojo转为json数据时浏览器报406错误

    The resource identified by this request is only capable of generating responses with characteristics not acceptable according to the request "accept" headers.
    导致原因:忘记在web中添加jackson的依赖
    解决:在web工程的pom.xml添加

    <dependency>  
        <groupId>com.fasterxml.jackson.core</groupId>  
        <artifactId>jackson-databind</artifactId>    
    </dependency> 
    

    相关文章

      网友评论

          本文标题:零零商城之异常处理大全(持续更新ing...)

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