Springboot,返回类型设置application/json
Springboot默认返回Content-Type是text/plain,如果希望所有返回接口Content-Type都改成application/json,需要配置一下。@Configurationpublic class WebConfiguration implements WebMvcConfigurer {@Overridepublic void configureContentNeg
·
Springboot默认返回Content-Type是text/plain,如果希望所有返回接口Content-Type都改成application/json,需要配置一下。
@Configuration
public class WebConfiguration implements WebMvcConfigurer {
@Override
public void configureContentNegotiation(ContentNegotiationConfigurer configurer) {
configurer.defaultContentType(MediaType.APPLICATION_JSON);
}
}
更多推荐
已为社区贡献1条内容
所有评论(0)