英文:
Getting 415 content not supported application/pkixcmp
问题
在我的Spring API中,我正在使用以下注解:
@PostMapping(value = "/api/xyz", consumes = "application/pkixcmp")
在调用API时遇到的异常:
[org.springframework.web.HttpMediaTypeNotSupportedException: 不支持内容类型 'application/pkixcmp']
英文:
In my Spring API I am using the following annotations :
@PostMapping(value = "/api/xyz", consumes = "application/pkixcmp")
Exception I am getting when consuming API:
[org.springframework.web.HttpMediaTypeNotSupportedException: Content type 'application/pkixcmp' not supported]
答案1
得分: 1
你在你的HttpMessageConverter中添加这个类型。
英文:
you add this type in your HttpMessageConverter
专注分享java语言的经验与见解,让所有开发者获益!
评论