在Spring Boot中,可以使用@Value
注解和Environment
接口來讀取properties文件。
@Value
注解讀取單個屬性:@Value("${property.name}")
private String propertyName;
在@Value
注解中,${property.name}
是要讀取的屬性名。
Environment
接口讀取多個屬性:@Autowired
private Environment env;
public void readProperties() {
String propertyValue = env.getProperty("property.name");
// ...
}
使用env.getProperty("property.name")
方法來獲取屬性值。
@ConfigurationProperties
注解綁定屬性到一個Java對象:@ConfigurationProperties(prefix = "myapp")
public class MyAppProperties {
private String property1;
private int property2;
// ...
// getters and setters
}
在@ConfigurationProperties
注解中,prefix
指定了屬性的前綴。然后,在Spring Boot配置類中,使用@EnableConfigurationProperties(MyAppProperties.class)
注解啟用屬性綁定。之后,可以通過@Autowired
注入MyAppProperties
對象,并直接使用其中的屬性。
以上是幾種讀取properties文件的方法,根據實際需求選擇適合的方法。