Skip to content

Commit

Permalink
fix:fix NullPointerException when properties contain kv with null value.
Browse files Browse the repository at this point in the history
  • Loading branch information
SkyeBeFreeman committed Apr 25, 2024
1 parent f3aa8ac commit 929b08b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -2,3 +2,4 @@
---

[fix: fix RouterLabelRestTemplateInterceptor add response headers exception with httpclient5.](https://github.com/Tencent/spring-cloud-tencent/pull/1239)
- fix:fix NullPointerException when properties contain kv with null value.
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -89,7 +89,7 @@

<properties>
<!-- Project revision -->
<revision>1.13.1-2023.0.0</revision>
<revision>1.13.2-2023.0.0</revision>

<!-- Spring Framework -->
<spring.framework.version>6.1.4</spring.framework.version>
Expand Down
Expand Up @@ -116,6 +116,11 @@ public static ExecutorService executor() {
* @param ret origin properties map
*/
static void initialize(Map<String, Object> ret) {
for (Map.Entry<String, Object> entry : ret.entrySet()) {
if (entry.getValue() == null) {
ret.put(entry.getKey(), "");
}
}
properties.putAll(ret);
}

Expand All @@ -142,6 +147,9 @@ static Map<String, ConfigPropertyChangeInfo> merge(Map<String, Object> ret) {
ret.keySet().parallelStream().forEach(key -> {
Object oldValue = properties.getIfPresent(key);
Object newValue = ret.get(key);
if (newValue == null) {
newValue = "";
}
if (oldValue != null) {
if (!newValue.equals(oldValue)) {
properties.put(key, newValue);
Expand Down
2 changes: 1 addition & 1 deletion spring-cloud-tencent-dependencies/pom.xml
Expand Up @@ -70,7 +70,7 @@
</developers>

<properties>
<revision>1.13.1-2023.0.0</revision>
<revision>1.13.2-2023.0.0</revision>

<!-- Dependencies -->
<polaris.version>1.15.0</polaris.version>
Expand Down

0 comments on commit 929b08b

Please sign in to comment.