英文:
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
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论