拋出問題
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包注解】
驗證
修改后再請求:
返回正常了