本文主要是介绍Content type 'text/plain;charset=UTF-8' not supported,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
前提:我是使用postman发送请求时,报的这个异常
2016-11-02 10:35:50,142 ERROR [http-bio-8080-exec-1] [com.confucian.framework.web.exception.ExceptionControllerAdvice:143] - <rqid:188-75-5c5c56df-1cb8-4afa-a74c-698f146d0fdb,exception:org.springframework.web.HttpMediaTypeNotSupportedException: Content type 'text/plain;charset=UTF-8' not supported
- 1
- 2
这是我要访问的请求所对应的controller
@RequestMapping(path = "/register", method = RequestMethod.POST)public Object register(@RequestBody StudentRegisterBean registerInfo, HttpServletRequest request, HttpServletResponse response) {
- 1
- 2
这是我的postman的界面,原因是因为数据传输格式选择错误。
这篇关于Content type 'text/plain;charset=UTF-8' not supported的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!