IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> 使用spring中的Binder绑定参数 -> 正文阅读

[Java知识库]使用spring中的Binder绑定参数


在使用spring boot时发现参数绑定非常好用,简单明了的绑定完一整个实体的属性。像是这样:

user.name=三侃
user.age=30

可以直接绑定到下面这个实体中


@Component
@ConfigurationProperties(prefix = "user")
public class User {

    private String name;

    private Integer age;
    
    private LocalDateTime birthday;

虽然用了很久已经,但是依然感觉很炫酷。
就想自己写的代码也用上这个功能,后来在翻看spring源码时发现一个类:Binder。研究了一下他的用法,发现可以自己实现这种炫酷的绑定变量方式了。

1 简单用法

首先最简单的用法:

public static void main(String[] args) {
        User user = new User();
        Bindable<User> bindable = Bindable.ofInstance(user);
        // 这里构建一个虚拟的配置文件
        Map properties = new HashMap<>();
        properties.put("user.name", "三侃");
        properties.put("user.age", "18");
        List<ConfigurationPropertySource> propertySources = Collections
                .singletonList(new MapConfigurationPropertySource(properties));
        user = new Binder(propertySources).bindOrCreate("user", bindable);
        System.out.println(user);
    }

输出文本:

User{name='三侃', age=18}

2 更多功能

只有最基本的功能肯定是无法在正常开发中使用的,不过强大的spring提供了非常丰富的功能。

2.1 字段的序列化

public static void main(String[] args) {
        User user = new User();
        Bindable<User> bindable = Bindable.ofInstance(user);
        Map properties = new HashMap<>();
        properties.put("user.name", "三侃");
        properties.put("user.age", "18");
        properties.put("user.birthday", "2022-01-01 00:00:00");

        DateTimeFormatters dateTimeFormatters = new DateTimeFormatters().dateTimeFormat("yyyy-MM-dd HH:mm:ss");
        List<ConfigurationPropertySource> propertySources = Collections
                .singletonList(new MapConfigurationPropertySource(properties));
        user = new Binder(propertySources, null, new WebConversionService(dateTimeFormatters)).bindOrCreate("user", bindable);
        System.out.println(user);
    }

输出文本:

User{name='三侃', age=18, birthday=2022-01-01T00:00}

除了这种使用开源工具自带的还可以自己实现转换的逻辑。
主要包含俩种接口类
GenericConverter:实际进行判断和执行转换的类
ConversionService:提供类型转换完整服务,包括判断是否可以转换和实际进行转换的入口。可以理解为封装了GenericConverter的功能

定义GenericConverter实现类


public class MyGenericConverter implements GenericConverter{
		// 这个方法返回了所有能进行转换的类信息,这个例子中可以不返回
        @Override
        public Set<ConvertiblePair> getConvertibleTypes() {
            return null;
        }
		// 进行转换操作,参数分别是:值、值的类、需要转换的目标类。这里demo就固定返回了当前时间
        @Override
        public Object convert(Object source, TypeDescriptor sourceType, TypeDescriptor targetType) {
            return LocalDateTime.now();
        }
    }

定义ConversionService的实现类:

public class MyGenericConversionService extends GenericConversionService{
		// 根据目标类和结果类判断是否能进行处理,返回null则代表无法处理
        @Nullable
        protected GenericConverter getConverter(TypeDescriptor sourceType, TypeDescriptor targetType) {
            return new MyGenericConverter();
        }
        // 执行转换,这里获取了MyGenericConverter进行转换
        @Override
        @Nullable
        public Object convert(@Nullable Object source, @Nullable TypeDescriptor sourceType, TypeDescriptor targetType) {
            Assert.notNull(targetType, "Target type to convert to cannot be null");
            return getConverter(sourceType, targetType).convert(source, sourceType, targetType);
        }
    }

最后使用自定义的转换

public static void main(String[] args) {
        User user = new User();
        Bindable<User> bindable = Bindable.ofInstance(user);
        Map properties = new HashMap<>();
        properties.put("user.name", "三侃");
        properties.put("user.birthday", "202");
        BindHandler handler = new IgnoreTopLevelConverterNotFoundBindHandler();
        List<ConfigurationPropertySource> propertySources = Collections
                .singletonList(new MapConfigurationPropertySource(properties));
        user = new Binder(propertySources, null, new MyGenericConversionService())
                .bindOrCreate("user", bindable, handler);
        System.out.println(user);
    }

因为我demo中返回的转换结果是当前时间,所以用户生日这个字段无论如何都只会是当前时间。

2.2 参数验证


public static void main(String[] args) {
        User user = new User();
        Bindable<User> bindable = Bindable.ofInstance(user);
        Map properties = new HashMap<>();
        properties.put("user.name", "三侃");
        properties.put("user.age", "-1");
        properties.put("user.birthday", "2022-01-01 00:00:00");
        Validator validator = new Validator() {
            @Override
            public boolean supports(Class<?> clazz) {
                return clazz == Integer.class;
            }

            @Override
            public void validate(Object target, Errors errors) {
                if((int)target<0){
                    System.out.println("年龄不能小于0");
                }
            }
        };
        ValidationBindHandler handler = new ValidationBindHandler(new IgnoreTopLevelConverterNotFoundBindHandler(), validator);
        DateTimeFormatters dateTimeFormatters = new DateTimeFormatters().dateTimeFormat("yyyy-MM-dd HH:mm:ss");
        List<ConfigurationPropertySource> propertySources = Collections
                .singletonList(new MapConfigurationPropertySource(properties));
        user = new Binder(propertySources, null, new WebConversionService(dateTimeFormatters))
                .bindOrCreate("user", bindable, handler);
        System.out.println(user);
    }

输处文本:

年龄不能小于0
User{name='三侃', age=-1, birthday=2022-01-01T00:00}

…待更新

  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2022-07-17 16:07:52  更:2022-07-17 16:07:58 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 15:32:34-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码