Spring cloud配置客户端(三)
覆盖远程配置属性
默认情况,Spring Cloud是允许覆盖的,spring.cloud.config.allowOverride=true
通过程序启动参数,调整这个值为"false"
--spring.cloud.config.allowOverride=true
启动后,重新Postman发送POST请求,调整spring.application.name值为"spring-cloud-new"
重点:如果spring.application.name不写的话,默认的话是项目名
自定义Bootstrap配置
- 创建
META-INF/spring.factories
文件{类似于Spring boot 自定义Starter} - 自定义Bootstrap配置Configurtion
package com.segmentfault.springcloudlesson1.bootstrap;
import org.springframework.context.ApplicationContextInitializer;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.env.ConfigurableEnvironment;
import org.springframework.core.env.MapPropertySource;
import org.springframework.core.env.MutablePropertySources;
import org.springframework.core.env.PropertySource;
import java.util.HashMap;
import java.util.Map;
/**
* bootstrap 配置bean
*/
@Configuration
public class MyConfiguration implements ApplicationContextInitializer {
@Override
public void initialize(ConfigurableApplicationContext applicationContext) {
//从ConfigurableApplicationContext获取ConfigurableEnvironment实例
ConfigurableEnvironment environment = applicationContext.getEnvironment();
//获取PropertySources
MutablePropertySources propertySources = environment.getPropertySources();
//定义一个新的 propertySource,并放置在首位
propertySources.addFirst(createPropertySource());
}
private PropertySource createPropertySource() {
Map<String, Object> source = new HashMap<>();
source.put("name", "shuai");
PropertySource propertySource = new MapPropertySource("my-property-source", source);
return propertySource;
}
}
三. 配置MEAT-INF/spring.factories
文件,关联Key
org.springframework.cloud.bootstrapConfiguration= \
com.segmentfault.springcloudlesson2.bootstrap.Myconfiguration
自定义Bootstrap配置属性源
- 实现PropertySourceLocator
package com.segmentfault.springcloudlesson1.bootstrap;
import org.springframework.cloud.bootstrap.config.PropertySourceLocator;
import org.springframework.core.env.*;
import java.util.HashMap;
import java.util.Map;
/**
* 自定义{@link PropertySourceLocator}实现
*/
public class MyPropertySourceLocator implements PropertySourceLocator {
@Override
public PropertySource<?> locate(Environment environment) {
if (environment instanceof ConfigurableEnvironment) {
ConfigurableEnvironment configurableEnvironment = ConfigurableEnvironment.class.cast(environment);
//获取PropertySources
MutablePropertySources propertySources = configurableEnvironment.getPropertySources();
//定义一个新的 propertySource,并放置在首位
propertySources.addFirst(createPropertySource());
}
return null;
}
private PropertySource createPropertySource() {
Map<String, Object> source = new HashMap<>();
source.put("spring.application.name", "shuaishuai");
//设置名称和来源
PropertySource propertySource = new MapPropertySource("over-bootstrap", source);
return propertySource;
}
}
- 配置META-INF/spring.factories
org.springframework.cloud.bootstrapConfiguration= \
com.segmentfault.springcloudlesson1.bootstrap.MyConfiguration,\
com.segmentfault.springcloudlesson1.bootstrap.MyPropertySourceLocator

低调大师中文资讯倾力打造互联网数据资讯、行业资源、电子商务、移动互联网、网络营销平台。
持续更新报道IT业界、互联网、市场资讯、驱动更新,是最及时权威的产业资讯及硬件资讯报道平台。
转载内容版权归作者及来源网站所有,本站原创内容转载请注明来源。
-
上一篇
从目录中查找最大和最小的文件(不包括子目录)
从目录中查找最大和最小的文件(不包括子目录),学会使用File类的一些基本方法的调用。代码如下: package file; import java.io.File; public class FindMinAndMaxFile { public static void main(String[] args) { File windows = new File("c:/windows"); File[] fs = windows.listFiles(); int min = -1; int max = -1; int j = min + 1; while (j < fs.length) { if (fs[j].isFile() && fs[j].length() > 0 && min < 0) { min = max = j; j++; continue; } if (fs[j].isFile() && (fs[j].length() != 0)) { if (fs[j].length() < fs[min].le...
-
下一篇
蚂蚁金服开源 SOFAJRaft:生产级 Java Raft 算法库
什么是 SOFAJRaft? SOFAJRaft 是一个基于Raft一致性算法的生产级高性能 Java 实现,支持 MULTI-RAFT-GROUP,适用于高负载低延迟的场景。 使用 SOFAJRaft 你可以专注于自己的业务领域,由 SOFAJRaft 负责处理所有与 Raft 相关的技术难题,并且 SOFAJRaft 非常易于使用,你可以通过几个示例在很短的时间内掌握它。 SOFAJRaft 是从百度的braft移植而来,做了一些优化和改进,感谢百度 braft 团队开源了如此优秀的 C++ Raft 实现。 基础知识:分布式共识算法 (Consensus Algorithm) 如何理解分布式共识? 多个参与者某一件事一致:一件事,一个结论 已达成一致的结论,不可推翻 有哪些分布式共识算法? Paxos:被认为是分布式共识算法的根本
相关文章
文章评论
共有0条评论来说两句吧...