Failed to write HTTP message:
org.springframework.http.converter.HttpMessageNotWritableException:
Could not write content: (was java.lang.NullPointerException)
需要添加jar包,荐使用woodstox-core-asl
(Spring官方也推荐这个):
<dependency>
因此添加上面的
<groupId>org.codehaus.woodstox</groupId>
<artifactId>woodstox-core-asl</artifactId>
<version>4.4.1</version>
</dependency>woodstox-core-asl
依赖即可解决问题。