http请求后台报406错误

1.springMVC的项目,通过浏览器访问后台方法遇到了报406的错误,找了很多原因,最终发现是因为缺少spring-mvc的json配置。

http请求后台报406错误_第1张图片

http请求后台报406错误_第2张图片

 

2.添加依赖:jackson-databind、jackson-core-asl

3.在springMVC.xml中配置


class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">






class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">


text/html;charset=UTF-8


4.在此访问即可

http请求后台报406错误_第3张图片

 

转载于:https://www.cnblogs.com/blue327/p/10090651.html

你可能感兴趣的:(http请求后台报406错误)