天天看點

springboot自定義配置源概述第一種方式第二種方式編寫測試小結

概述

我們知道,在Spring boot中可以通過xml或者@ImportResource 來引入自己的配置檔案,但是這裡有個限制,必須是本地,而且格式隻能是 properties(或者 yaml)。那麼,如果我們有遠端配置,如何把他引入進來來呢。

第一種方式

這外一種方法,相對更簡單些,但是相對沒那麼“優雅”。就是通過EnvironmentPostProcessor接口把我們自定義的propertySource加入environment中,

public class MyEnvironmentPostProcessor implements EnvironmentPostProcessor {
    @Override
    public void postProcessEnvironment(ConfigurableEnvironment environment, SpringApplication application) {
        MyPropertySource propertySource = new MyPropertySource("myPropertySource");

        Map<String, String> propertyMap = new HashMap<>();
        propertyMap.put("myName", "lizo");
        propertySource.setProperty(propertyMap);
        environment.getPropertySources().addLast(propertySource);
    }
}      

同時需要在META-INFO/spring.factories中加入

org.springframework.boot.env.EnvironmentPostProcessor=com.lizo.MyEnvironmentPostProcessor      

第二種方式

第二種方式可能相對比較複雜一點,其實是參考Sprng cloud中的做法,其實也隻需要3步

第一步,編寫PropertySource

編寫一個類繼承EnumerablePropertySource,然後實作它的抽象方法即可,抽象方法看名字就知道作用,簡單起見,這裡使用一個map來儲存配置,例如:

public class MyPropertySource extends EnumerablePropertySource<Map<String,String>> {

    public MyPropertySource(String name, Map source) {
        super(name, source);
    }

    //擷取所有的配置名字
    @Override
    public String[] getPropertyNames() {
        return source.keySet().toArray(new String[source.size()]);
    }

    //根據配置傳回對應的屬性
    @Override
    public Object getProperty(String name) {
        return source.get(name);
    }
}      

第二步,編寫PropertySourceLocator

PropertySourceLocator 其實就是用來定位我們前面的PropertySource,需要重寫的方法隻有一個,就是傳回一個PropertySource對象,例如,

public class MyPropertySourceLocator implements PropertySourceLocator {
    @Override
    public PropertySource<?> locate(Environment environment) {
        //簡單起見,這裡直接建立一個map,你可以在這裡寫從哪裡擷取配置資訊。
        Map<String,String> properties = new HashMap<>();
        properties.put("myName","lizo");

        MyPropertySource myPropertySource = new MyPropertySource("myPropertySource",properties);
        return myPropertySource;
    }
}      

第三步,讓PropertySourceLocator生效

建立一個配置類,例如

@Configuration
public class MyConfigBootstrapConfiguration {

    @Bean
    public MyPropertySourceLocator myPropertySourceLocator(){
        return new MyPropertySourceLocator();
    }
}      

最後再建立/更新 META-INFO/spring.factories(如果做過自定義Spring boot開發的都知道這個檔案)

org.springframework.cloud.bootstrap.BootstrapConfiguration=\
com.lizo.MyConfigBootstrapConfiguration      

簡單來說就是給Spring Boot說,這個是一個啟動配置類(一種優先級很高的配置類)。

編寫測試

測試一

@SpringBootApplication
public class Test2 {

    public static void main(String[] args) throws SQLException {
        ConfigurableApplicationContext run = SpringApplication.run(Test2.class, args);
        Ser bean = run.getBean(Ser.class);
        System.out.println(bean.getMyName());
    }

    @Component
    public static class Ser{
        @Value("${myName}")
        private String myName;

        public String getMyName() {
            return myName;
        }

        public void setMyName(String myName) {
            this.myName = myName;
        }
    }
}      

正确輸出

測試二

我們在application配置檔案中,引入這個變量呢,例如在application.properties中

my.name=${myName}      

同樣,結果也是能夠生效的

myName就是上面在PropertySourceLocator中寫進去的配置屬性。運作程式,可以看見确實是可以正确輸出。

小結

上面隻是抛磚引玉,這樣無論是哪裡的資料源,都可以通過這種方式編寫,把配置交給Spring 管理。這樣再也不怕在本地配置檔案中出現敏感資訊啦,再也不怕修改配置檔案需要登入每一個機器修改啦。

轉載于:https://www.cnblogs.com/lizo/p/7683300.html