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");
}
}
推荐阅读
-
springboot @ConfigurationProperties @EnableConfigurationProperties 自动配置
-
SpringBoot中SpringMVC的自动配置以及扩展
-
【springboot】之自动配置原理
-
springboot介绍项目(springboot自动配置原理)
-
springboot介绍项目(springboot自动配置原理)
-
springboot2.0.3源码篇 - 自动配置的实现,发现也不是那么复杂
-
springboot介绍项目(springboot自动配置原理)
-
springBoot 依赖管理 自动配置,容器功能 ,以及配置常用注解详解
-
【springboot】之自动配置原理
-
JAVA SpringBoot 项目打成jar包供第三方引用自动配置(Spring发现)解决方案