Spring Boot通過@PropertySource
注解來加載配置文件。
@SpringBootApplication
注解所在的類上添加@PropertySource
注解,指定要加載的配置文件路徑。例如,加載名為application.properties
的配置文件,代碼如下:@SpringBootApplication
@PropertySource("classpath:application.properties")
public class MyApplication {
public static void main(String[] args) {
SpringApplication.run(MyApplication.class, args);
}
}
application.properties
配置文件中,添加需要的配置項。例如:server.port=8080
@Value
注解來注入配置項的值。例如,在一個@Component
標注的類中獲取server.port
配置項的值:@Component
public class MyComponent {
@Value("${server.port}")
private String port;
// ...
}
以上就是使用Spring Boot加載配置文件的方法。在配置文件中添加需要的配置項,并在需要使用的地方通過注解來獲取配置項的值。