springboot学习(六十三) springboot中使用@ConstructorBinding读取配置信息

springboot学习(六十三) springboot中使用@ConstructorBinding读取配置信息,第1张

springboot学习(六十三) springboot中使用@ConstructorBinding读取配置信息

文章目录
  • 前言
  • 一、添加测试配置信息
  • 二、使用步骤
    • 1.编写配置实体类
    • 2.编写配置类


前言

SpringBoot的配置文件与类之间的属性绑定(@ConfigurationProperties)是通过Setter方法来进行绑定对应的配置值,而从springboot2.2版本开始支持了构造函数的方式进行绑定。添加注解的属性配置类不再需要添加Setter方法,不过需要添加构造函数,根据构造函数进行实例化属性配置类。
这种注解适用于某些情况下要对某些配置做处理后再设置到类中。

一、添加测试配置信息

在application.properties或application.yml中添加配置:

#token过期时间(分钟)
token.expire=1440m
#是否将token写入cookie
token.cookie-store=true
#token保存在cookie的时间(默认与浏览器生命周期一致)
token.cookie-expire=-1
#token生成方式暂时支持hmac256和rsa两种
token.creator-mode=rsa

注意多个单词间使用-分割是可以的,但不能使用.,这与之前使用Setter方式是不一样的。

二、使用步骤 1.编写配置实体类

注意配置类上添加了@ConstructorBinding注解,不能再使用@Component,以前使用@Setter注入的一些注解,比如@DefaultValue、@Duration都是支持的,需要写在构造器的属性上。
下面这个配置类TokenProps中createMode做了特殊处理。

package com.iscas.base.biz.config.auth;

import com.iscas.base.biz.util.JWTUtils;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.context.properties.ConstructorBinding;
import org.springframework.boot.convert.DurationUnit;

import java.time.Duration;
import java.time.temporal.ChronoUnit;


@Data
//@Component
@ConstructorBinding
@ConfigurationProperties(prefix = "token")
public class TokenProps {

    
    private Duration expire = Duration.ofMinutes(14440);

    
    private int cookieExpire = -1;

    
    private boolean cookieStore;

    
    private JWTUtils.AlgorithmType creatorMode;

    public TokenProps(@DurationUnit(ChronoUnit.MINUTES) Duration expire,
                      Integer cookieExpire, boolean cookieStore, String creatorMode) {
        this.expire = expire;
        this.cookieExpire = cookieExpire;
        this.cookieStore = cookieStore;
        this.creatorMode = JWTUtils.AlgorithmType.getEnum(creatorMode);
    }

}
public class JWTUtils {
    private JWTUtils() {
    }
    public enum AlgorithmType {
        
        HMAC256("hmac256"),

        
        RSA("rsa");

        private String value;

        public String getValue() {
            return value;
        }

        AlgorithmType(String value) {
            this.value = value;
        }

        public static AlgorithmType getEnum(String value) {
            return Arrays.stream(AlgorithmType.values())
                    .filter(type -> type.value.equalsIgnoreCase(value))
                    .findFirst()
                    .orElse(null);
        }

    }
 }
2.编写配置类

注意使用@EnableConfigurationProperties

package com.iscas.base.biz.config.auth;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Configuration;


@Configuration
@EnableConfigurationProperties(value = TokenProps.class)
public class TokenConfig {
    @Autowired
    private TokenProps tokenProps;
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5683824.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存