Spring Boot 通常會使用 application.properties 或 application.yml 文件來配置應(yīng)用程序的屬性。以下是一些最佳實踐,幫助您在 Spring Boot 中讀取 properties 文件:
@Value("${myapp.property}")
private String myProperty;
@ConfigurationProperties(prefix = "myapp")
public class MyAppProperties {
private String property;
// getters and setters
}
在配置類中使用 @EnableConfigurationProperties 注解:
@Configuration
@EnableConfigurationProperties(MyAppProperties.class)
public class AppConfig {
// configuration code
}
@Autowired
private Environment env;
String myProperty = env.getProperty("myapp.property");
@PropertySource("classpath:custom.properties")
通過以上方法,您可以方便地讀取 properties 文件中的屬性,并在 Spring Boot 應(yīng)用程序中使用它們。選擇適合您項目的方法,并根據(jù)需要進行調(diào)整。