Spring Boot 注入外部配置到应用内部的静态变量

属性配置类 StaticProperties.class

@Component
public class StaticProperties { public static String CUSTOM_NAME; @Value("${custom.name}") public void setCustomName(String customName) { CUSTOM_NAME = customName; } } 

Spring Boot 配置提示 resources/META-INF/spring-configuration-metadata.json

{
  "properties": [
    {
      "name": "custom.name",
      "type": "java.lang.String", "sourceType": "com.anoyi.xxx.config.StaticProperties" } ] } 

Spring Boot 配置 application.properties

custom.name=anoyi

至此,即可在 Spring Boot 全局任意引用 StaticProperties.CUSTOM_NAME

猜你喜欢

转载自www.cnblogs.com/yahu/p/9303142.html