Spring Boot可以通過以下方式讀取自定義的properties文件:
application.properties
或application.yml
文件中添加自定義屬性,例如:custom.setting=value
application.properties
或application.yml
中指定自定義properties文件的路徑,例如:spring.config.location=classpath:/custom.properties
@Value
注解或Environment
對象來讀取自定義屬性,例如:@Value("${custom.setting}")
private String customSetting;
@Autowired
private Environment env;
String customSetting = env.getProperty("custom.setting");
@Configuration
類,使用@PropertySource
注解指定自定義properties文件的路徑,并使用@Value
注解注入屬性,例如:@Configuration
@PropertySource("classpath:custom.properties")
public class CustomConfig {
@Value("${custom.setting}")
private String customSetting;
// getters and setters
}
使用以上方法,Spring Boot可以讀取自定義的properties文件并注入到應用程序中。