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应用程序中读取外部配置文件中的配置项了。