Spring Boot 2.0 配置属性自定义转换的方法

作者:paderlol 时间:2021-10-18 12:07:44 

引言

当我们通过@ConfigurationProperties注解实现配置 bean的时候,如果默认的配置属性转换无法满足我们的需求的时候,我们可以根据自己的需求通过以下扩展方式对配置属性进行转换

PropertyEditorSupport实现

下面的例子是把属性中定义的字符串转换成Movie,并且把name的值大写

继承PropertyEditorSupport并且实现PropertyEditorRegistrar接口


package com.paderlol.spring.practice.properties.editor;

import com.paderlol.spring.practice.properties.pojo.Movie;
import java.beans.PropertyEditorSupport;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.PropertyEditorRegistrar;
import org.springframework.beans.PropertyEditorRegistry;

/**
* @author pader PropertyEditor 在不同的包下面
*/
@Slf4j
public class CustomMovieEditor extends PropertyEditorSupport
implements PropertyEditorRegistrar {

@Override
 public String getAsText() {
   Movie movie = (Movie) getValue();
   return movie == null ? "" : movie.getName();
 }

@Override
 public void setAsText(String text) throws IllegalArgumentException {
   log.info("继承[PropertyEditorSupport]类,转换数据={}", text);
   String[] data = text.split("-");
   Movie movie = Movie.builder().name(data[0]
   .toUpperCase()).seat(Integer.parseInt(data[1]))
   .build();
   setValue(movie);
 }

@Override
 public void registerCustomEditors(PropertyEditorRegistry registry) {
   registry.registerCustomEditor(Movie.class,this);
 }
}

注册自定义的PropertyEditor


@Bean
public CustomEditorConfigurer customEditorConfigurer() {
 CustomEditorConfigurer customEditorConfigurer = new CustomEditorConfigurer();  
  // 有两种注册方式 这是第一种
 customEditorConfigurer.setPropertyEditorRegistrars(
   new PropertyEditorRegistrar[]{ new CustomMovieEditor() });
    // 第二 种
   Map<Class<?>,Class<? extends PropertyEditor>> maps = new HashMap<>();
   maps.put(Movie.class,CustomMovieEditor.class);

return customEditorConfigurer;
}

Converter接口+@ConfigurationPropertiesBinding注解


//注意
@Component
@ConfigurationPropertiesBinding
public class StringToPersonConverter implements Converter<String, Person> {

@Override
 public Person convert(String from) {
   log.info("使用[Converter]接口,转换数据={}", from);
   String[] data = from.split(",");
   return Person.builder().name(data[0]).age(Integer.parseInt(data[1])).build();
 }
}

总结

  • 以上两种实现方式结果,但是Converter接口相比PropertyEditor接口更加灵活一些,PropertyEditor接口仅限于String转换,Converter可以自定义别的,并且PropertyEditor接口通常用于Controller中的接收参数的转换。

  • @ConfigurationPropertiesBinding是限定符注解@Qualifier的派生类而已,参考org.springframework.boot.context.properties.ConversionServiceDeducer,以下是源代码片段


@Autowired(required = false)
@ConfigurationPropertiesBinding
public void setConverters(List<Converter<?, ?>> converters) {
  this.converters = converters;
}

/**
* A list of custom converters (in addition to the defaults) to use when
* converting properties for binding.
* @param converters the converters to set
*/
@Autowired(required = false)
@ConfigurationPropertiesBinding
public void setGenericConverters(List<GenericConverter> converters) {
this.genericConverters = converters;
}

  • Formatter接口是不能对属性完成转换的,因为ConversionServiceDeducer初始化的时候只获取GenericConverter和Converter接口

  • 官方文档上还介绍了可以使用实现org.springframework.core.convert.ConversionService并且Bean名称也必须叫conversionService,不过大部分情况不推荐自己通过这种方式去实现这个接口,因为自己实现的ConversionService会替代默认的。具体参考ConversionServiceDeducer源码:


public ConversionService getConversionService() {
   try {
     //默认首先寻找Bean名称叫conversionService的ConversionService的Bean类
     return this.applicationContext.getBean(
         ConfigurableApplicationContext.CONVERSION_SERVICE_BEAN_NAME,
         ConversionService.class);
   }
   catch (NoSuchBeanDefinitionException ex) {
     //找不到就默认生成ApplicationConversionService类
     return this.applicationContext.getAutowireCapableBeanFactory()
         .createBean(Factory.class).create();
   }
}

来源:https://segmentfault.com/a/1190000016941868

标签:Spring,Boot,属性,自定义转换
0
投稿

猜你喜欢

  • RecyclerView实现侧滑拖拽功能

    2023-03-10 16:09:50
  • C#泛型详解及关键字作用

    2023-04-07 20:23:12
  • Android canvas drawBitmap方法详解及实例

    2021-06-12 12:17:18
  • Java实现新建有返回值的线程的示例详解

    2022-02-13 17:09:33
  • Spring实战之使用注解实现声明式事务操作示例

    2021-08-19 07:16:07
  • C#创建自签名认证文件的方法

    2021-12-02 03:17:03
  • Java集合使用 Iterator 删除元素

    2022-02-25 12:32:44
  • java实现超市库存管理系统

    2022-06-28 01:23:44
  • Netty实战入门教程之 什么是Netty

    2023-10-14 01:08:09
  • SpringBoot之导入静态资源详解

    2021-06-22 05:01:30
  • dotNet中的反射用法入门教程

    2023-12-01 01:08:28
  • SpringBoot如何根据用户系统时区动态展示时间

    2021-09-23 23:37:10
  • Spring配置shiro时自定义Realm中属性无法使用注解注入的解决办法

    2022-09-18 11:18:22
  • Spring Boot 集成Elasticsearch模块实现简单查询功能

    2022-09-05 06:31:31
  • Android 中 Tweened animation的实例详解

    2022-12-12 15:28:06
  • 详解Android如何实现阴影效果

    2022-04-14 13:11:16
  • mybatis注解与xml常用语句汇总

    2022-05-17 18:39:47
  • Android Studio实现简单的通讯录

    2023-06-13 06:49:56
  • Android实现简易计步器功能隔天步数清零查看历史运动纪录

    2021-07-24 00:37:02
  • Spring Security 实现短信验证码登录功能

    2022-11-02 19:39:30
  • asp之家 软件编程 m.aspxhome.com