不受支持的媒体类型错误Spring MVC控制器

时间:2018-12-03 15:54:44

标签: spring-mvc spring-boot kotlin

我想知道我们是否指定方法的cosume类型,那么是否有必要在标头中传递content-type

我的控制器

@Controller
public class MyController{
     @PostMapping(value="/webpush/tracking",consumes = ["application/xml"])  
     @ResponseBody
     fun trackWebpushFcmMessage(@RequestBody track:Track){

     }
}

我的要求邮递员是

 http://localhost:5464/webpush/tracking
 content-type in header is application/xml

0 个答案:

没有答案