美文网首页
全局响应结果媒体类型替换

全局响应结果媒体类型替换

作者: 盗生一 | 来源:发表于2020-12-11 19:58 被阅读0次
package com.gxhj.safecommunity.configuration.config;

import org.springframework.context.annotation.Configuration;
import org.springframework.http.MediaType;
import org.springframework.web.servlet.config.annotation.ContentNegotiationConfigurer;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

/**
 * 设置默认返回结构
 */
@Configuration
@EnableWebMvc
public class WebConfiguration implements WebMvcConfigurer {
    @Override
    public void configureContentNegotiation(ContentNegotiationConfigurer configurer) {
        configurer.defaultContentType(MediaType.APPLICATION_XML);
    }
}

相关文章

网友评论

      本文标题:全局响应结果媒体类型替换

      本文链接:https://www.haomeiwen.com/subject/bllsgktx.html