设置SpringBoot默认返回体Content-Type
时间:2019-07-17 12:05:59
收藏:0
阅读:1544
@Configuration
@EnableWebMvc
public class WebConfiguration implements WebMvcConfigurer {
@Override
public void configureContentNegotiation(ContentNegotiationConfigurer configurer) {
configurer.defaultContentType(MediaType.APPLICATION_JSON);
}
}
原文:https://www.cnblogs.com/linphy/p/11199484.html
评论(0)