我找到了答案。需要对URL进行编码的参数字符,因此可以正常工作:
我的Spring应用程序配置为使用GET参数进行内容协商。代码是Kotlin,但在Java中也一样。
配置:
override fun configureContentNegotiation(configurer: ContentNegotiationConfigurer) {
configurer.favorParameter(true)
.parameterName("format")
.ignoreAcceptHeader(false)
.defaultContentType(MediaType.APPLICATION_JSON)
.mediaType("text/plain", MediaType.TEXT_PLAIN)
.mediaType("application/json", MediaType.APPLICATION_JSON)
.mediaType("application/rdf+xml", MediaType("application", "rdf+xml"))
}
以及以下控制器方法:
@GetMapping("/test", produces=["text/plain"])
fun testText() : String {
return "Hello"
}
@GetMapping("/test", produces=["application/json"])
fun testJson() : Map<String, String> {
return mapOf("hello" to "world")
}
@GetMapping("/test", produces=["application/rdf+xml"])
fun testRdf(response: HttpServletResponse) {
// dummy response, to demonstrate using output stream.
response.setContentType("application/rdf+xml")
response.outputStream.write("dummy data".toByteArray())
response.outputStream.close()
}
CCD_ 1返回CCD_。
以下操作很好:
http://localhost:8080/test?format=text/plain
给了我纯文本http://localhost:8080/test?format=application/json
给了我JSON
但是http://localhost:8080/test?format=application/rdf+xml
给了我一个HTTP 406,日志显示
org.apache.tomcat.util.http.Parameters : Start processing with input [format=application/rdf+xml]
o.s.web.servlet.DispatcherServlet : GET "/test?format=application/rdf+xml", parameters={masked}
.w.s.m.s.DefaultHandlerExceptionResolver : Resolved [org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation]
o.s.web.servlet.DispatcherServlet : Completed 406 NOT_ACCEPTABLE
调试器显示它甚至不调用我的函数。
(为了证明testRdf
处理程序做了预期的事情,我使路径唯一,并删除了produces
注释——它在内容协商之外运行良好,并按预期返回正文。(
据我所知,我已经指出我的方法是该内容类型的正确处理程序,并且我已经正确注册了该内容类型。
为什么Spring不认为我的处理程序符合内容协商请求?
http://localhost:8080/test?format=application%2Frdf%2Bxml