mvc输出json时报HTTP Status 406错误

时间:2023-03-09 18:16:36
mvc输出json时报HTTP Status 406错误

1、mvc输出json时报HTTP Status 406错误

错误纠结了2天时间,今天总与整对了,少jackson-databind引用

对于Spring 4.1.x 和以上, jackson-databind 2.3或以上是推荐使用的,以避免转换问题。

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

2、默认/映射 不会直接调整到对应的方法中,处理/映射过来的方法名sayHello()

需要把index.jsp文件删除,才能进入默认的/映射方法sayHello()