Spring Boot可以通過使用@PropertySource注解來讀取外部配置文件。以下是一種常見的方法:
@Configuration
@PropertySource("classpath:application.properties")
public class ApplicationConfig {
@Autowired
private Environment env;
// 定義需要讀取的配置項
@Value("${my.property}")
private String myProperty;
// 其他配置項...
// 提供獲取配置項的方法
public String getMyProperty() {
return myProperty;
}
// 其他獲取配置項的方法...
}
my.property=value
@SpringBootApplication
@ComponentScan(basePackages = "com.example")
public class Application {
@Autowired
private ApplicationConfig applicationConfig;
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
@PostConstruct
public void init() {
// 使用配置項
String myProperty = applicationConfig.getMyProperty();
// 其他使用配置項的邏輯...
}
}
通過以上步驟,你就可以在Spring Boot應用程序中讀取外部配置文件中的配置項了。