Postman无法将Content-Type从text/plain改为appliation/json

最近用postman调试接口,默认Headers里面的Content-Type为text/plain,无法修改,输入Request Body相应内容后发送请求,页面报500,如图:

Postman无法将Content-Type从text/plain改为appliation/json_第1张图片

后台提示:

org.springframework.web.HttpMediaTypeNotSupportedException: Content type 'text/plain;charset=UTF-8' not supported

直接修改Content-Type无法操作,进入postman的Body页面,选定raw,格式从Text下拉改为JSON,回到Headers页面会发现Content-Type自动改为application/json

Postman无法将Content-Type从text/plain改为appliation/json_第2张图片

发送请求,接口调试成功。

你可能感兴趣的:(为什么会有无关编程的东西,json,postman,java,测试工具)