`@EnableConfigurationProperties` 是 Spring Boot 框架中的一个注解,用于将 `@ConfigurationProperties` 注解标记的类引入到 Spring 容器中,并启用该注解的类所提供的配置属性。
使用 `@EnableConfigurationProperties` 注解时,需要指定被扫描的配置类,将其引入到应用程序上下文中。一旦被引入,我们就可以直接在其他组件中使用这些配置属性了,而不需要手动实例化配置类,并逐个读取属性值。
下面是一个使用 `@EnableConfigurationProperties` 注解的示例:
```java
@SpringBootApplication
@EnableConfigurationProperties(MyConfig.class)
public class MyApp {
public static void main(String[] args) {
SpringApplication.run(MyApp.class, args);
}
}
```
在这个示例中,我们在 `MyApp` 类上使用了 `@EnableConfigurationProperties` 注解,并将 `MyConfig` 类作为参数传入。这样,在应用程序启动时,Spring 就会自动扫描和加载 `MyConfig` 中的配置属性,并将其注入到其他需要使用这些配置属性的组件中。
值得注意的是,`@EnableConfigurationProperties` 注解只能扫描并启用使用了 `@ConfigurationProperties` 注解标记的类,并将其引入到 Spring 容器中。如果想要使用非 `@ConfigurationProperties` 注解标记的配置类,需要使用 `@Import` 注解或 XML 配置文件进行引入。
总之,`@EnableConfigurationProperties` 是 Spring Boot 框架中的一个注解,用于将使用 `@ConfigurationProperties` 注解标记的配置类引入到 Spring 容器中,并启用该注解的类所提供的配置属性。使用该注解时需要指定被扫描的配置类,将其引入到应用程序上下文中,以便其他组件可以使用其中的配置属性。
- 环境配置
- window怎么配置java环境变量?
- Java基础语法
- Java中的数据类型
- Java中的JSONObject
- Java高级特性
- Maven
- jib-maven-plugin
- 什么是Spring Boot 的 parent pom?
- maven中各个生命周期的含义
- Spring Boot
- maven与spring boot 的关系
- 配置文件
- application-properties配置文件
- Spring Boot 的启动
- spring boot项目如何启动?
- 列举一下Spring Boot的启动过程
- SpringApplication.run方法
- Spring Boot 启动时有哪些接口?
- CommandLineRunner
- Spring Boot 的常用注解
- 系统注解
- 表格:系统注解
- @Override
- @Deprecated
- @SuppressWarnnings
- 使用在类名上的注解
- 表格:使用在类名上的注解
- @RestController
- @Controller
- @Service
- @Repository
- @Component
- @Configuration
- @Resource
- @Autowired
- @RequestMapping
- @PostMapping
- @GetMapping
- @Transactional
- @Qualifier
- 使用在方法上的注解
- 表格:使用在方法上的注解
- @RequestBody
- @PathVariable
- @Bean
- @ResponseBody
- @PreAuthorize
- 其他常用注解
- 表格:其他常用注解
- @EnableAutoConfiguration
- @SpringBootApplication
- @EnableScheduling
- @EnableAsync
- @ComponentScan
- @Aspec
- @ControllerAdvice
- @ExceptionHandler
- @Value
- @ConfigurationProperties
- @EnableConfigurationProperties
- @MapperScan
- Validator验证的常用注解
- spring IoC容器
- Spring IoC容器依赖注入实现方式
- MyBatis
- paginationInterceptor
- @TableName
- @TableId
- @Param
- UrlBasedCorsConfigurationSource
- Lombok
- @Data
- @Slf4j
- @EqualsAndHashCode
- @Accessors
- 支付系统
- 1. 初始化mysql数据库流程
- 2. 初始化redis数据库的流程
- 3. 初始化rabbitmq服务