@ConfigurationProperties的prefix属性
时间: 2023-11-09 22:01:52 浏览: 100
SpringBoot @ConfigurationProperties使用详解
@ConfigurationProperties注解的prefix属性用于指定配置文件中属性的前缀,这样可以将同一模块的属性归为一类,方便管理和维护。
例如,如果我们有一个配置文件中有以下属性:
```
com.example.name=John
com.example.age=18
com.example.gender=male
```
我们可以在对应的Java类上使用@ConfigurationProperties注解,并指定prefix属性为"com.example",这样就可以将这三个属性归为同一类:
```java
@ConfigurationProperties(prefix = "com.example")
public class Person {
private String name;
private int age;
private String gender;
// getters and setters
}
```
阅读全文