spring中MappingJacksonHttpMessageConverter的使用

实际上就是关于jackson版本和spring版本匹配问题,大多问题出现在convert转换上,所以在org.springframework.web.servlet.view.json中的版本描述对于解决这个问题没有帮助,应该在org.springframework.http.converter.json(spring-framework-5.0.2.RELEASE\springjar\spring-web-5.0.2.RELEASE.jar)这个路径中找到org.springframework.http.converter.json.MappingJackson2HttpMessageConverter.class,按照描述找到对应的版本导入jar包即可,例:Compatible with Jackson 2.9 and higher, as of Spring 5.0.

你可能感兴趣的:(spring中MappingJacksonHttpMessageConverter的使用)