-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* support read yaml file from config center * add licence * update demo * delete testing code * modify as comment
- Loading branch information
Showing
14 changed files
with
268 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
...wei-config/src/main/java/com/huaweicloud/config/client/kie/ConfigCenterFileProcessor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package com.huaweicloud.config.client.kie; | ||
|
||
import java.util.HashMap; | ||
import java.util.Map; | ||
import java.util.Map.Entry; | ||
|
||
import org.springframework.beans.factory.config.YamlPropertiesFactoryBean; | ||
import org.springframework.core.io.ByteArrayResource; | ||
|
||
public class ConfigCenterFileProcessor extends ConfigValueProcessor<Map<String, Object>> { | ||
@Override | ||
public Map<String, Object> process(Map<String, Object> source) { | ||
Map<String, Object> result = new HashMap<>(); | ||
for (Entry<String, Object> entry : source.entrySet()) { | ||
YamlPropertiesFactoryBean yamlFactory = new YamlPropertiesFactoryBean(); | ||
yamlFactory.setResources(new ByteArrayResource(((String) entry.getValue()).getBytes())); | ||
result.putAll(toMap("", yamlFactory.getObject())); | ||
} | ||
return result; | ||
} | ||
} |
51 changes: 51 additions & 0 deletions
51
...d-huawei-config/src/main/java/com/huaweicloud/config/client/kie/ConfigValueProcessor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package com.huaweicloud.config.client.kie; | ||
|
||
import java.util.Collections; | ||
import java.util.Enumeration; | ||
import java.util.HashMap; | ||
import java.util.Map; | ||
import java.util.Properties; | ||
|
||
import org.springframework.util.StringUtils; | ||
|
||
public abstract class ConfigValueProcessor<T> { | ||
|
||
abstract Map<String, Object> process(T source); | ||
|
||
protected Map<String, Object> toMap(String prefix, Properties properties) { | ||
if (properties == null) { | ||
return Collections.emptyMap(); | ||
} | ||
Map<String, Object> result = new HashMap<>(); | ||
Enumeration<String> keys = (Enumeration<String>) properties.propertyNames(); | ||
while (keys.hasMoreElements()) { | ||
String key = keys.nextElement(); | ||
Object value = properties.getProperty(key); | ||
if (!StringUtils.isEmpty(prefix)) { | ||
key = prefix + "." + key; | ||
} | ||
if (value != null) { | ||
result.put(key, value); | ||
} else { | ||
result.put(key, null); | ||
} | ||
} | ||
return result; | ||
} | ||
} |
Oops, something went wrong.