Skip to content

Commit

Permalink
Merge pull request spring-projects#32876 from quaff
Browse files Browse the repository at this point in the history
* pr/32876:
  Polish "Resolved nested placeholder for CharSequence"

Closes spring-projectsgh-32876
  • Loading branch information
snicoll committed Jul 22, 2024
2 parents 5331499 + b6fbbec commit 0030144
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2002-2022 the original author or authors.
* Copyright 2002-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -84,8 +84,10 @@ protected <T> T getProperty(String key, Class<T> targetValueType, boolean resolv
}
Object value = propertySource.getProperty(key);
if (value != null) {
if (resolveNestedPlaceholders && value instanceof String string) {
value = resolveNestedPlaceholders(string);
if (resolveNestedPlaceholders &&
(String.class.equals(targetValueType) || CharSequence.class.equals(targetValueType)) &&
value instanceof CharSequence cs) {
value = resolveNestedPlaceholders(cs.toString());
}
logKeyFound(key, propertySource, value);
return convertValueIfNecessary(value, targetValueType);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,31 @@ void resolveNestedPropertyPlaceholders() {
.withMessageContaining("Circular");
}

@Test
void resolveNestedPlaceholdersIfValueIsCharSequence() {
MutablePropertySources ps = new MutablePropertySources();
ps.addFirst(new MockPropertySource()
.withProperty("p1", "v1")
.withProperty("p2", "v2")
.withProperty("p3", new StringBuilder("${p1}:${p2}")));
ConfigurablePropertyResolver pr = new PropertySourcesPropertyResolver(ps);
assertThat(pr.getProperty("p1")).isEqualTo("v1");
assertThat(pr.getProperty("p2")).isEqualTo("v2");
assertThat(pr.getProperty("p3")).isEqualTo("v1:v2");
}

@Test
void resolveNestedPlaceholdersIfValueIsCharSequenceAndStringBuilderIsRequested() {
MutablePropertySources ps = new MutablePropertySources();
ps.addFirst(new MockPropertySource()
.withProperty("p1", "v1")
.withProperty("p2", "v2")
.withProperty("p3", new StringBuilder("${p1}:${p2}")));
ConfigurablePropertyResolver pr = new PropertySourcesPropertyResolver(ps);
assertThat(pr.getProperty("p3", StringBuilder.class)).isInstanceOf(StringBuilder.class)
.hasToString("${p1}:${p2}");
}

@Test
void ignoreUnresolvableNestedPlaceholdersIsConfigurable() {
MutablePropertySources ps = new MutablePropertySources();
Expand Down

0 comments on commit 0030144

Please sign in to comment.