警告 [http-nio-8080-exec-9] org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.logException Resolved [org.springframework.web.HttpMediaTypeNotSupportedException: Content type 'application/json;charset=UTF-8' not supported]
大概出現了這樣的問題,前端用ajax可以正常post,但是如果用postman,只能用表單數據發送,如果用json,后端controller收到的永遠是null。
@RequestBody 和 @RequestParam都試過了。
原因應該是缺少json解析的依賴包,所以maven里加入jackson json的三個包即可。