要使用yml格式進行配置,需要按照以下步驟進行操作:
在Spring Boot項目的資源文件夾(src/main/resources)下創建一個名為application.yml的文件。
在application.yml文件中使用yml格式進行配置,例如:
server:
port: 8080
spring:
datasource:
url: jdbc:mysql://localhost:3306/mydatabase
username: root
password: password
@ConfigurationProperties
,指定配置文件的路徑和前綴。例如:import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
@Configuration
@ConfigurationProperties(prefix = "spring.datasource")
public class DataSourceConfig {
private String url;
private String username;
private String password;
// 省略getter和setter方法
}
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class MyService {
private final DataSourceConfig dataSourceConfig;
@Autowired
public MyService(DataSourceConfig dataSourceConfig) {
this.dataSourceConfig = dataSourceConfig;
}
public void doSomething() {
String url = dataSourceConfig.getUrl();
String username = dataSourceConfig.getUsername();
String password = dataSourceConfig.getPassword();
// 使用配置屬性進行操作
}
}
這樣就可以使用yml格式進行配置了。注意,yml格式使用縮進表示層級關系,冒號后面要有一個空格。另外,yml配置文件也支持使用環境變量和占位符進行動態配置。