设置SpringBoot默认返回体Content-Type

@Configuration
@EnableWebMvc
public class WebConfiguration implements WebMvcConfigurer {
    @Override
    public void configureContentNegotiation(ContentNegotiationConfigurer configurer) {
        configurer.defaultContentType(MediaType.APPLICATION_JSON);
    }
}

 

posted on 2019-07-17 10:43  阳光土豆  阅读(10023)  评论(0)    收藏  举报

导航