我想在调用执行器端点/info
和/health
时禁用内容协商
这是我的配置文件
@Configuration
public class InterceptorAppConfig implements WebMvcConfigurer {
@Override
public void addInterceptors(InterceptorRegistry registry) {
registry.addInterceptor(interceptor);
}
@Override
public void configureContentNegotiation(ContentNegotiationConfigurer configurer) {
configurer.defaultContentType(MediaType.APPLICATION_XML)
.mediaType("json", MediaType.APPLICATION_JSON)
.mediaType("xml", MediaType.APPLICATION_XML);
}
}
当我curl http://localhost:8081/health
我收到:
DefaultHandlerExceptionResolver Resolved [org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation]
但是,当我在 Chrome 中触发相同的网址时,我会收到有效的响应。
在我的情况下,应该在没有标头的情况下调用执行器(没有 -H '接受:...'(
不幸的是,我只能提供一个次优的解决方案。
@Override
public void configureContentNegotiation(ContentNegotiationConfigurer configurer) {
configurer
.mediaType("json", MediaType.APPLICATION_JSON)
.mediaType("xml", MediaType.APPLICATION_XML)
.defaultContentTypeStrategy((webRequest) -> {
final String servletPath = ((HttpServletRequest) webRequest.getNativeRequest()).getServletPath();
final MediaType defaultContentType = Arrays.asList("/info", "/health").contains(servletPath)
? MediaType.APPLICATION_JSON : MediaType.APPLICATION_XML;
return Collections.singletonList(defaultContentType);
});
}
如果调用/info
或/health
终结点,则返回application/json
。在所有其他请求上,将使用默认application/xml
。
添加defaultContentTypeStrategy
并处理空或通配符接受。
@Override
public void configureContentNegotiation(ContentNegotiationConfigurer configurer) {
configurer.defaultContentType(MediaType.APPLICATION_XML)
.mediaType("json", MediaType.APPLICATION_JSON)
.mediaType("xml", MediaType.APPLICATION_XML);
configurer.defaultContentTypeStrategy(new ContentNegotiationStrategy() {
@Override
public List<MediaType> resolveMediaTypes(NativeWebRequest webRequest) throws HttpMediaTypeNotAcceptableException {
// If you want handle different cases by getting header with webRequest.getHeader("accept")
return Arrays.asList(MediaType.APPLICATION_JSON);
}
});
}