共計 1101 個字符,預計需要花費 3 分鐘才能閱讀完成。
要獲取 YAML 文件中的配置值,可以使用 Spring Boot 提供的 @ConfigurationProperties 注解。以下是獲取 YAML 配置值的步驟:
- 在你的 Spring Boot 應用程序的配置類上添加 @ConfigurationProperties 注解,并指定 YAML 文件的前綴。
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
@Component
@ConfigurationProperties(prefix = "your-prefix")
public class YourConfigClass {private String yourProperty;
public String getYourProperty() {return yourProperty;
}
public void setYourProperty(String yourProperty) {this.yourProperty = yourProperty;
}
}
- 在 YAML 文件中定義你的配置項,使用與 Java 類屬性對應的鍵。
your-prefix:
your-property: value
- 在你的應用程序中使用 @Autowired 注解將配置類注入到你的類中,并訪問配置值。
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class YourApplication {@Autowired
private YourConfigClass yourConfigClass;
public static void main(String[] args) {SpringApplication.run(YourApplication.class, args);
}
public void someMethod() {String propertyValue = yourConfigClass.getYourProperty();
// 使用配置值進行操作
}
}
這樣,你就可以從 YAML 文件中獲取配置值并在應用程序中使用它們了。
丸趣 TV 網 – 提供最優質的資源集合!
正文完