【spring boot】接口响应报错无法转化为JSON返回 org.springframework.http.converter.HttpMessageNotWritableException: No converter found for return value of type
抛出问题
1.PostMan测试一个接口,返回的结果不是正常的 JSON格式,

2.后端报错:
org.springframework.http.converter.HttpMessageNotWritableException: No converter found for return value of type: class com.sxd.swapping.globalException.result.GlobalResult

解决方法
1.接口返回加注解@ResponseBody

2.检查 响应体有没有 getter/setter方法
【可以自己写getter/setter,也可以使用Lombok包注解】

验证
修改后再请求:
返回正常了


浙公网安备 33010602011771号