欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

springboot @ConfigurationProperties @EnableConfigurationProperties 自动配置

程序员文章站 2024-01-07 23:21:40
...

通过redis自动配置过程看这两个注解的联合使用,达到自动配置
springboot项目,maven

application.properties
配置redis

...
spring.redis.port=7379
...

需要获取配置的类,比如@Configuration注解的配置类,需要获取redis配置的其他类,redisProperties.getHost() 就可以取到配置

import org.springframework.boot.autoconfigure.data.redis.RedisProperties

@EnableConfigurationProperties(RedisProperties.class)
class JedisMy{
    @Autowired
    private RedisProperties redisProperties
}

获取使用内置的Environment获取配置,需要指定配置的key,上面的自动配置,key就是类的属性,redis的配置都是RedisProperties的属性

import org.springframework.core.env.Environment

class  ddd{
    @Autowired
    private Environment env;

    public void dd(){
         env.getProperty("spring.redis.port");
    }
}

上一篇:

下一篇: