在 Spring Boot 中存取應用程式屬性
需要擷取 Spring Boot 應用程式中 application.properties 檔案中定義的值?具體方法如下:
@Value 註解
@Value 註解可讓您將屬性值注入 Spring bean 中。例如,要存取userBucket.path:
@Value("${userBucket.path}") private String userBucketPath;
外部化配置
Spring Boot 提供了全面的外部化配置機制,使您能夠從各種來源訪問屬性值,包括application.properties.
@ConfigurationProperties
使用 @ConfigurationProperties 註解將 bean 對應到屬性來源。這允許您將屬性值直接綁定到 bean 中的欄位。例如:
@ConfigurationProperties(prefix = "userBucket") public class BucketProperties { private String path; // ... getters and setters }
@PropertySource
使用@PropertySource 從自訂來源載入屬性:
@PropertySource("classpath:my-custom-properties.properties") public class MyProperties { @Value("${my-custom-property}") private String customProperty; }
@Environment
@Environment介面提供存取目前環境及其屬性:
Environment env = SpringApplication.getEnvironment(); String customProperty = env.getProperty("my-custom-property");
更多詳細資訊和設定選項,請參閱有關外部化配置的Spring Boot 文件:https://docs.spring.io/spring- boot/docs /current/reference/html/boot-features-external-config.html
以上是如何存取 Spring Boot 應用程式中的應用程式屬性?的詳細內容。更多資訊請關注PHP中文網其他相關文章!