springboot自定义messageConverter

如果想自定义传输数据的类型 需要设置自己的messageConverter

public class YanMessageConverter implements HttpMessageConverter {
    @Override
    public boolean canRead(Class clazz, MediaType mediaType) {

        return false;
    }

    @Override
    public boolean canWrite(Class clazz, MediaType mediaType) {
        return clazz.isAssignableFrom(Car.class);
    }

    @Override
    public List<MediaType> getSupportedMediaTypes() {
        MediaType mediaType = MediaType.parseMediaType("application/yan");
        ArrayList<MediaType> objects = new ArrayList<>();
        objects.add(mediaType);
        return objects;
    }

    @Override
    public Object read(Class clazz, HttpInputMessage inputMessage) throws IOException, HttpMessageNotReadableException {
        return null;
    }

    @Override
    public void write(Object o, MediaType contentType, HttpOutputMessage outputMessage) throws IOException, HttpMessageNotWritableException {
        Car o1 = (Car) o;
        String data="hello "+((Car) o).getName()+" hello "+((Car) o).getPrice();
        OutputStream body = outputMessage.getBody();
        String s = new String(data.getBytes(), "UTF-8");
        System.out.println(s);
        body.write(s.getBytes("gbk"));//避免乱码

    }
}

@Import(User.class)
@Configuration(proxyBeanMethods = true)
@EnableConfigurationProperties(Car.class)
//proxyBeanMEthods
// 设置为false意味着跳过扫描容器的步骤,直接new一个新的组件而不是使用容器中的组件
public class MyConfiguration implements WebMvcConfigurer {
    @Bean
    @ConditionalOnClass(name = "Pet")
    public User getUser(){
        return new User("yan",18,getPet());
    }
    //@Bean("tom")
    public Pet getPet(){
        return new Pet("tom");
    }

    @Override
    public void configurePathMatch(PathMatchConfigurer configurer) {
        UrlPathHelper urlPathHelper = new UrlPathHelper();
        urlPathHelper.setRemoveSemicolonContent(false);
        configurer.setUrlPathHelper(urlPathHelper);
    }
//自定义转换器,转换自定义的字符串格式
    @Override
    public void addFormatters(FormatterRegistry registry) {
        registry.addConverter(new Converter<String, Pet>() {
            @Override
            public Pet convert(String source) {
                String[] split = source.split(",");
                return new Pet(split[0]);
            }
        });
    }
	//如果想把自定义的类型也融入到参数内容协商里面去
	//需要重写内容协商配置类
	//注意:这里会覆盖所有的映射
	//所以我们需要自己添加映射 
    @Override
    public void configureContentNegotiation(ContentNegotiationConfigurer configurer) {
        //configurer.strategies();
        HashMap<String, MediaType> stringMediaTypeHashMap = new HashMap<>();
        stringMediaTypeHashMap.put("xml",MediaType.APPLICATION_XML);
        stringMediaTypeHashMap.put("json",MediaType.APPLICATION_JSON);
        stringMediaTypeHashMap.put("yan",MediaType.parseMediaType("application/yan"));
        //参数响应
        ParameterContentNegotiationStrategy parameterContentNegotiationStrategy = new ParameterContentNegotiationStrategy(stringMediaTypeHashMap);

        //若想基于头的响应 则应该增加策略
        HeaderContentNegotiationStrategy headStrategy=new HeaderContentNegotiationStrategy();


        configurer.strategies(Arrays.asList(parameterContentNegotiationStrategy,headStrategy));

    }
	//添加自定义messageConverter
    @Override
    public void extendMessageConverters(List<HttpMessageConverter<?>> converters) {
        converters.add(new YanMessageConverter());
    }
}
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值