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依賴即可解決問題。
