springMvc 406错误

1.可能是 jar 包 问题 

spring mvc 4 请加入:

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

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

2. @ResponseBody 不能 返回 int ,integer ,

要返回String 或者对象。

原文地址:https://www.cnblogs.com/whm-blog/p/7279118.html