@ConfigurationProperties 是 Spring Framework 中的一个注解,用于自动将配置文件中的属性值注入到 Java 对象中。
使用 @ConfigurationProperties 注解时,我们需要为目标类添加该注解,并指定要映射的属性前缀。然后,Spring 会自动将配置文件中以该前缀开头的属性值注入到该类的相应属性中,属性名需要与配置文件中的属性名一致。
以下是一个简单的 @ConfigurationProperties 示例:
```
@Component
@ConfigurationProperties(prefix = "my.component")
public class MyComponent {
private String name;
private int age;
private boolean enabled;
// getters and setters
}
```
在上述示例中,我们使用 @ConfigurationProperties 注解将名为 "my.component" 的配置属性值注入到了 MyComponent 的成员变量中,包括 name、age 和 enabled 三个属性。
需要注意的是,在使用 @ConfigurationProperties 时,我们需要在配置文件中为目标属性设置相应的值,例如:
```
my.component.name=Tom
my.component.age=28
my.component.enabled=true
```
在上述示例中,我们设置了名为 "my.component" 的属性前缀,并为其下 name、age 和 enabled 三个属性分别设置了相应的值。
总之,@ConfigurationProperties 是 Spring Framework 中用于自动将配置文件中的属性值注入到 Java 对象中的注解。通过该注解,我们可以更加方便地对应用程序进行配置,提高应用程序的可维护性和可扩展性。
- 环境配置
- 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服务