YamlPropertiesFactoryBean incorrect flatten nested map to properties when map key contains escaped brackets.
Close gh-27020. Signed-off-by: Mengqi Xu <2663479778@qq.com>
This commit is contained in:
parent
1ab3d89f10
commit
491f89831a
|
@ -56,6 +56,7 @@ import org.springframework.util.StringUtils;
|
||||||
* @author Juergen Hoeller
|
* @author Juergen Hoeller
|
||||||
* @author Sam Brannen
|
* @author Sam Brannen
|
||||||
* @author Brian Clozel
|
* @author Brian Clozel
|
||||||
|
* @author Mengqi Xu
|
||||||
* @since 4.1
|
* @since 4.1
|
||||||
*/
|
*/
|
||||||
public abstract class YamlProcessor {
|
public abstract class YamlProcessor {
|
||||||
|
@ -305,17 +306,20 @@ public abstract class YamlProcessor {
|
||||||
*/
|
*/
|
||||||
protected final Map<String, Object> getFlattenedMap(Map<String, Object> source) {
|
protected final Map<String, Object> getFlattenedMap(Map<String, Object> source) {
|
||||||
Map<String, Object> result = new LinkedHashMap<>();
|
Map<String, Object> result = new LinkedHashMap<>();
|
||||||
buildFlattenedMap(result, source, null);
|
buildFlattenedMap(result, source, null, false);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressWarnings({"rawtypes", "unchecked"})
|
@SuppressWarnings({"rawtypes", "unchecked"})
|
||||||
private void buildFlattenedMap(Map<String, Object> result, Map<String, Object> source, @Nullable String path) {
|
private void buildFlattenedMap(Map<String, Object> result, Map<String, Object> source, @Nullable String path, boolean isIndexedKey) {
|
||||||
source.forEach((key, value) -> {
|
source.forEach((key, value) -> {
|
||||||
if (StringUtils.hasText(path)) {
|
if (StringUtils.hasText(path)) {
|
||||||
if (key.startsWith("[")) {
|
if (isIndexedKey) {
|
||||||
key = path + key;
|
key = path + key;
|
||||||
}
|
}
|
||||||
|
else if (key.startsWith("[") || key.endsWith("]")) {
|
||||||
|
key = path + '[' + key + ']';
|
||||||
|
}
|
||||||
else {
|
else {
|
||||||
key = path + '.' + key;
|
key = path + '.' + key;
|
||||||
}
|
}
|
||||||
|
@ -325,7 +329,7 @@ public abstract class YamlProcessor {
|
||||||
}
|
}
|
||||||
else if (value instanceof Map map) {
|
else if (value instanceof Map map) {
|
||||||
// Need a compound key
|
// Need a compound key
|
||||||
buildFlattenedMap(result, map, key);
|
buildFlattenedMap(result, map, key, false);
|
||||||
}
|
}
|
||||||
else if (value instanceof Collection collection) {
|
else if (value instanceof Collection collection) {
|
||||||
// Need a compound key
|
// Need a compound key
|
||||||
|
@ -336,7 +340,7 @@ public abstract class YamlProcessor {
|
||||||
int count = 0;
|
int count = 0;
|
||||||
for (Object object : collection) {
|
for (Object object : collection) {
|
||||||
buildFlattenedMap(result, Collections.singletonMap(
|
buildFlattenedMap(result, Collections.singletonMap(
|
||||||
"[" + (count++) + "]", object), key);
|
"[" + (count++) + "]", object), key, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -165,6 +165,38 @@ class YamlPropertiesFactoryBeanTests {
|
||||||
assertThat(properties.getProperty("one")).isEqualTo("two");
|
assertThat(properties.getProperty("one")).isEqualTo("two");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Test // gh-27020
|
||||||
|
void loadResourceWithEscapedKey() {
|
||||||
|
String yaml = "root:\n" +
|
||||||
|
" webservices:\n" +
|
||||||
|
" \"[domain.test:8080]\":\n" +
|
||||||
|
" - username: foo\n" +
|
||||||
|
" password: bar\n";
|
||||||
|
YamlPropertiesFactoryBean factory = new YamlPropertiesFactoryBean();
|
||||||
|
factory.setResources(
|
||||||
|
new ByteArrayResource(yaml.getBytes()),
|
||||||
|
new ByteArrayResource("indexed:\n \"[0]\": foo\n \"[1]\": bar".getBytes()),
|
||||||
|
new ByteArrayResource("indexed:\n - \"[a]\": foo\n \"[b]\": bar".getBytes()),
|
||||||
|
new ByteArrayResource("only-left-bracket:\n \"[/key1/\": foo".getBytes()),
|
||||||
|
new ByteArrayResource("only-right-bracket:\n \"/key1/]\": foo".getBytes()),
|
||||||
|
new ByteArrayResource("special-bracket:\n \"][/key1/][\": foo".getBytes()));
|
||||||
|
|
||||||
|
Properties properties = factory.getObject();
|
||||||
|
assertThat(properties.getProperty("root.webservices[[domain.test:8080]][0].username")).isEqualTo("foo");
|
||||||
|
assertThat(properties.getProperty("root.webservices[[domain.test:8080]][0].password")).isEqualTo("bar");
|
||||||
|
|
||||||
|
assertThat(properties.getProperty("indexed[[0]]")).isEqualTo("foo");
|
||||||
|
assertThat(properties.getProperty("indexed[[1]]")).isEqualTo("bar");
|
||||||
|
assertThat(properties.getProperty("indexed[0][[a]]")).isEqualTo("foo");
|
||||||
|
assertThat(properties.getProperty("indexed[0][[b]]")).isEqualTo("bar");
|
||||||
|
|
||||||
|
assertThat(properties.getProperty("only-left-bracket[[/key1/]")).isEqualTo("foo");
|
||||||
|
assertThat(properties.getProperty("only-right-bracket[/key1/]]")).isEqualTo("foo");
|
||||||
|
assertThat(properties.getProperty("special-bracket.][/key1/][")).isEqualTo("foo");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void loadNonExistentResource() {
|
void loadNonExistentResource() {
|
||||||
YamlPropertiesFactoryBean factory = new YamlPropertiesFactoryBean();
|
YamlPropertiesFactoryBean factory = new YamlPropertiesFactoryBean();
|
||||||
|
|
Loading…
Reference in New Issue