<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
在系統執行過程中,可能由於一些設定項的簡單變動需要重新打包啟停專案,這對於在執行中的專案會造成資料丟失,客戶操作無響應等情況發生,針對這類情況對開發框架進行升級提供yml檔案實時修改更新功能
專案基於的是2.0.0.RELEASE版本,所以snakeyaml需要單獨引入,高版本已包含在內
<dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> <version>1.23</version> </dependency>
網上大多數方法是引入spring-cloud-context設定元件呼叫ContextRefresher的refresh方法達到同樣的效果,考慮以下兩點未使用
讀取resource檔案下的檔案需要使用ClassPathResource獲取InputStream
public String getTotalYamlFileContent() throws Exception { String fileName = "application.yml"; return getYamlFileContent(fileName); } public String getYamlFileContent(String fileName) throws Exception { ClassPathResource classPathResource = new ClassPathResource(fileName); return onvertStreamToString(classPathResource.getInputStream()); } public static String convertStreamToString(InputStream inputStream) throws Exception{ return IOUtils.toString(inputStream, "utf-8"); }
我們獲取到yml檔案內容後視覺化顯示到前臺進行展示修改,將修改後的內容通過yaml.load方法轉換成Map結構,再使用yaml.dumpAsMap轉換為流寫入到檔案
public void updateTotalYamlFileContent(String content) throws Exception { String fileName = "application.yml"; updateYamlFileContent(fileName, content); } public void updateYamlFileContent(String fileName, String content) throws Exception { Yaml template = new Yaml(); Map<String, Object> yamlMap = template.load(content); ClassPathResource classPathResource = new ClassPathResource(fileName); Yaml yaml = new Yaml(); //字元輸出 FileWriter fileWriter = new FileWriter(classPathResource.getFile()); //用yaml方法把map結構格式化為yaml檔案結構 fileWriter.write(yaml.dumpAsMap(yamlMap)); //重新整理 fileWriter.flush(); //關閉流 fileWriter.close(); }
yml屬性在程式中讀取使用一般有三種
使用Value註解
@Value("${system.systemName}") private String systemName;
通過enviroment注入讀取
@Autowired private Environment environment; environment.getProperty("system.systemName")
使用ConfigurationProperties註解讀取
@Component @ConfigurationProperties(prefix = "system") public class SystemConfig { private String systemName; }
我們通過environment.getProperty方法讀取的設定集合實際是儲存在PropertySources中的,我們只需要把鍵值對全部取出儲存在propertyMap中,將更新後的yml檔案內容轉換成相同格式的ymlMap,兩個Map進行合併,呼叫PropertySources的replace方法進行整體替換即可
但是yaml.load後的ymlMap和PropertySources取出的propertyMap兩者資料解構是不同的,需要進行手動轉換
propertyMap集合就是單純的key,value鍵值對,key是properties形式的名稱,例如system.systemName=>xxxxx集團管理系統
ymlMap集合是key,LinkedHashMap的巢狀層次結構,例如system=>(systemName=>xxxxx集團管理系統)
轉換方法如下
public HashMap<String, Object> convertYmlMapToPropertyMap(Map<String, Object> yamlMap) { HashMap<String, Object> propertyMap = new HashMap<String, Object>(); for (String key : yamlMap.keySet()) { String keyName = key; Object value = yamlMap.get(key); if (value != null && value.getClass() == LinkedHashMap.class) { convertYmlMapToPropertyMapSub(keyName, ((LinkedHashMap<String, Object>) value), propertyMap); } else { propertyMap.put(keyName, value); } } return propertyMap; } private void convertYmlMapToPropertyMapSub(String keyName, LinkedHashMap<String, Object> submMap, Map<String, Object> propertyMap) { for (String key : submMap.keySet()) { String newKey = keyName + "." + key; Object value = submMap.get(key); if (value != null && value.getClass() == LinkedHashMap.class) { convertYmlMapToPropertyMapSub(newKey, ((LinkedHashMap<String, Object>) value), propertyMap); } else { propertyMap.put(newKey, value); } } }
重新整理方法如下
String name = "applicationConfig: [classpath:/" + fileName + "]"; MapPropertySource propertySource = (MapPropertySource) environment.getPropertySources().get(name); Map<String, Object> source = propertySource.getSource(); Map<String, Object> map = new HashMap<>(source.size()); map.putAll(source); Map<String, Object> propertyMap = convertYmlMapToPropertyMap(yamlMap); for (String key : propertyMap.keySet()) { Object value = propertyMap.get(key); map.put(key, value); } environment.getPropertySources().replace(name, new MapPropertySource(name, map));
不論是Value註解還是ConfigurationProperties註解,實際都是通過注入Bean物件的屬性方法使用的,我們先自定註解RefreshValue來修飾屬性所在Bean的class
通過實現InstantiationAwareBeanPostProcessorAdapter介面在系統啟動時過濾篩選對應的Bean儲存下來,在更新yml檔案時通過spring的event通知更新對應
bean的屬性即可
註冊事件使用EventListener註解
@EventListener public void updateConfig(ConfigUpdateEvent configUpdateEvent) { if(mapper.containsKey(configUpdateEvent.key)){ List<FieldPair> fieldPairList = mapper.get(configUpdateEvent.key); if(fieldPairList.size()>0){ for (FieldPair fieldPair:fieldPairList) { fieldPair.updateValue(environment); } } } }
通知觸發事件使用ApplicationContext的publishEvent方法
@Autowired private ApplicationContext applicationContext; for (String key : propertyMap.keySet()) { applicationContext.publishEvent(new YamlConfigRefreshPostProcessor.ConfigUpdateEvent(this, key)); }
YamlConfigRefreshPostProcessor的完整程式碼如下
@Component public class YamlConfigRefreshPostProcessor extends InstantiationAwareBeanPostProcessorAdapter implements EnvironmentAware { private Map<String, List<FieldPair>> mapper = new HashMap<>(); private Environment environment; @Override public boolean postProcessAfterInstantiation(Object bean, String beanName) throws BeansException { processMetaValue(bean); return super.postProcessAfterInstantiation(bean, beanName); } @Override public void setEnvironment(Environment environment) { this.environment = environment; } private void processMetaValue(Object bean) { Class clz = bean.getClass(); if (!clz.isAnnotationPresent(RefreshValue.class)) { return; } if (clz.isAnnotationPresent(ConfigurationProperties.class)) { //@ConfigurationProperties註解 ConfigurationProperties config = (ConfigurationProperties) clz.getAnnotation(ConfigurationProperties.class); for (Field field : clz.getDeclaredFields()) { String key = config.prefix() + "." + field.getName(); if(mapper.containsKey(key)){ mapper.get(key).add(new FieldPair(bean, field, key)); }else{ List<FieldPair> fieldPairList = new ArrayList<>(); fieldPairList.add(new FieldPair(bean, field, key)); mapper.put(key, fieldPairList); } } } else { //@Valuez註解 try { for (Field field : clz.getDeclaredFields()) { if (field.isAnnotationPresent(Value.class)) { Value val = field.getAnnotation(Value.class); String key = val.value().replace("${", "").replace("}", ""); if(mapper.containsKey(key)){ mapper.get(key).add(new FieldPair(bean, field, key)); }else{ List<FieldPair> fieldPairList = new ArrayList<>(); fieldPairList.add(new FieldPair(bean, field, key)); mapper.put(key, fieldPairList); } } } } catch (Exception e) { e.printStackTrace(); System.exit(-1); } } } public static class FieldPair { private static PropertyPlaceholderHelper propertyPlaceholderHelper = new PropertyPlaceholderHelper("${", "}", ":", true); private Object bean; private Field field; private String value; public FieldPair(Object bean, Field field, String value) { this.bean = bean; this.field = field; this.value = value; } public void updateValue(Environment environment) { boolean access = field.isAccessible(); if (!access) { field.setAccessible(true); } try { if (field.getType() == String.class) { String updateVal = environment.getProperty(value); field.set(bean, updateVal); } else if (field.getType() == Integer.class) { Integer updateVal = environment.getProperty(value,Integer.class); field.set(bean, updateVal); } else if (field.getType() == int.class) { int updateVal = environment.getProperty(value,int.class); field.set(bean, updateVal); } else if (field.getType() == Boolean.class) { Boolean updateVal = environment.getProperty(value,Boolean.class); field.set(bean, updateVal); } else if (field.getType() == boolean.class) { boolean updateVal = environment.getProperty(value,boolean.class); field.set(bean, updateVal); } else { String updateVal = environment.getProperty(value); field.set(bean, JSONObject.parseObject(updateVal, field.getType())); } } catch (IllegalAccessException e) { e.printStackTrace(); } field.setAccessible(access); } public Object getBean() { return bean; } public void setBean(Object bean) { this.bean = bean; } public Field getField() { return field; } public void setField(Field field) { this.field = field; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } } public static class ConfigUpdateEvent extends ApplicationEvent { String key; public ConfigUpdateEvent(Object source, String key) { super(source); this.key = key; } } @EventListener public void updateConfig(ConfigUpdateEvent configUpdateEvent) { if(mapper.containsKey(configUpdateEvent.key)){ List<FieldPair> fieldPairList = mapper.get(configUpdateEvent.key); if(fieldPairList.size()>0){ for (FieldPair fieldPair:fieldPairList) { fieldPair.updateValue(environment); } } } } }
到此這篇關於SpringBoot動態更新yml檔案的文章就介紹到這了,更多相關SpringBoot更新yml內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45