Spring Boot 通常会使用 application.properties 或 application.yml 文件来配置应用程序的属性。以下是一些最佳实践,帮助您在 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 应用程序中使用它们。选择适合您项目的方法,并根据需要进行调整。