Spring Boot实战小技巧(四):从配置文件获取配置值的方式

使用Spring Boot时,可将变量的值写在properties或yml配置文件中,通过读取配置文件中的键值对获取,方便灵活修改服务配置。Spring Boot读取配置值的方式很多,常见的有3种:使用@Value注解、使用@ConfigurationProperties注解和通过Environment对象获取。

下面将通过代码示例依次介绍3种方法,properties文件中的配置如下:

spring.redis.host=localhost
spring.redis.port=6379
spring.redis.password=123456
spring.cache.redis.time-to-live=600000
person.name=Tom
person.age=30

方法1 使用@Value注解
创建变量时,加上@Value注解,即可直接读取配置文件中相应键值,为该变量赋值。示例如下:

@Value("${spring.cache.redis.time-to-live}")
private Long timeToLive;

此方式使用时有一定风险,若配置项的类型不是String,则配置文件中该项的值不能为空。因为程序读取配置文件中值的类型为String,赋值前再转换为变量定义的类型,此时可能会出现异常。例如在本文示例中,若配置文件中未赋值,则空值转为Long类型会出现空指针异常。

方法2 使用@ConfigurationProperties注解
创建实体类时,加上使用@ConfigurationProperties注解,可读取配置文件中符合约束条件的键值对,为类属性赋值。示例如下:

@Component
@ConfigurationProperties(prefix = "person")
public class Person {

    private String name;

    private int age;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        this.age = age;
    }
}

用@ConfigurationProperties注解将前缀为person的配置项的值取出,赋予Person类中字段名相同的属性,之后直接调用获取属性值的函数,即可获取配置文件中的值。
此方法同样存在方法1中的问题。

方法3 通过Environment对象获取
通过注入获取Environment对象,然后再根据字段名获取定义在配置文件的属性值。示例如下:

@Autowired
private Environment environment;

@Bean
public LettuceConnectionFactory redisConnectionFactory() {
	RedisStandaloneConfiguration redisConf = new RedisStandaloneConfiguration();
	redisConf.setHostName(environment.getProperty("spring.redis.host"));
	redisConf.setPort(Integer.parseInt(environment.getProperty("spring.redis.port")));
	redisConf.setPassword(RedisPassword.of(environment.getProperty("spring.redis.password")));
	return new LettuceConnectionFactory(redisConf);
}

此方法的好处是可以在获取配置值的代码段加上try{}catch{}语句,避免程序抛出异常。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Mars Coder

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值