這篇文章主要講解了“springboot項(xiàng)目自定義讀取多環(huán)境yml配置方法”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“springboot項(xiàng)目自定義讀取多環(huán)境yml配置方法”吧!
目前創(chuàng)新互聯(lián)建站已為上千多家的企業(yè)提供了網(wǎng)站建設(shè)、域名、虛擬空間、網(wǎng)站托管、服務(wù)器托管、企業(yè)網(wǎng)站設(shè)計(jì)、宜秀網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。
有一些支付相關(guān)的配置文件是在不想寫到application里的。
不說原理了,網(wǎng)上一大堆。
1:直接上代碼:
import lombok.extern.slf4j.Slf4j; import org.springframework.boot.SpringApplication; import org.springframework.boot.env.EnvironmentPostProcessor; import org.springframework.boot.env.PropertySourceLoader; import org.springframework.boot.env.YamlPropertySourceLoader; import org.springframework.core.env.ConfigurableEnvironment; import org.springframework.core.env.PropertySource; import org.springframework.core.io.Resource; import org.springframework.core.io.support.PathMatchingResourcePatternResolver; import org.springframework.core.io.support.ResourcePatternResolver; import org.springframework.util.CollectionUtils; import org.springframework.util.ResourceUtils; import java.io.IOException; import java.util.List; /** * @version V1.0 * @description: 讀取自定義的payment-*.yml的環(huán)境處理器(只讀yml文件,其他文件忽略) * @author: SunF * @create: 2019-08-21 09:59 **/ @Slf4j public class PaymentEnvironmentPostProcessor implements EnvironmentPostProcessor { private final ResourcePatternResolver patternResolver = new PathMatchingResourcePatternResolver(); private final PropertySourceLoader propertySourceLoader; public PaymentEnvironmentPostProcessor() { super(); propertySourceLoader = new YamlPropertySourceLoader(); } @Override public void postProcessEnvironment(ConfigurableEnvironment environment, SpringApplication application) { String[] activeProfiles = environment.getActiveProfiles(); for (String activeProfile: activeProfiles){ String location = ResourceUtils.CLASSPATH_URL_PREFIX + "paymentConfig/payment-"+activeProfile+ ".yml"; try{ Resource[] resourceArray = this.patternResolver.getResources(location); for(Resource resource : resourceArray){ List> propertySourceList = propertySourceLoader.load(resource.getFilename(), resource); if(! CollectionUtils.isEmpty(propertySourceList)){ propertySourceList.stream().forEach(environment.getPropertySources() :: addLast); } } }catch(IOException e){ log.error("加載支付配置文件失敗,因?yàn)閧}", e.getMessage(), e); } } } }
這里只讀了yml文件,我們不需要其他文件,如果采用多種PropertySourceLoader進(jìn)行掃描加載無疑增加了不必要的啟動(dòng)時(shí)間。
如果有需要可以將propertySourceLoader改為List,后續(xù)的環(huán)節(jié)在for循環(huán)中處理:
private final ListpropertySourceLoaderList; public PaymentEnvironmentPostProcessor() { super(); this.propertySourceLoaderList = SpringFactoriesLoader.loadFactories(PropertySourceLoader.class, getClass().getClassLoader()); }
2:添加spring.factories
在resources下添加META-INF文件夾,在旗下創(chuàng)建spring.factories文件,內(nèi)容為:
org.springframework.boot.env.EnvironmentPostProcessor=com.xxx.xxx.config.PaymentEnvironmentPostProcessor
感謝各位的閱讀,以上就是“springboot項(xiàng)目自定義讀取多環(huán)境yml配置方法”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對springboot項(xiàng)目自定義讀取多環(huán)境yml配置方法這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!