获取 415 内容不支持应用程序/ pkixcmp。

huangapple go评论77阅读模式
英文:

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

huangapple
  • 本文由 发表于 2020年7月24日 10:38:49
  • 转载请务必保留本文链接:https://go.coder-hub.com/63065929.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定