Skip to content

Commit abaca95

Browse files
committed
Merge branch '2.2.x' into 2.3.x
Closes gh-21744
2 parents 9fd6ff7 + bfe1c28 commit abaca95

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/template/AbstractViewResolverProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public abstract class AbstractViewResolverProperties {
6161
private Charset charset = DEFAULT_CHARSET;
6262

6363
/**
64-
* White list of view names that can be resolved.
64+
* The view names that can be resolved.
6565
*/
6666
private String[] viewNames;
6767

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,7 @@ private void customizeRemoteIpValve(ConfigurableTomcatWebServerFactory factory)
183183
if (StringUtils.hasLength(remoteIpHeader)) {
184184
valve.setRemoteIpHeader(remoteIpHeader);
185185
}
186-
// The internal proxies default to a white list of "safe" internal IP
187-
// addresses
186+
// The internal proxies default to a list of "safe" internal IP addresses
188187
valve.setInternalProxies(remoteIpProperties.getInternalProxies());
189188
try {
190189
valve.setHostHeader(remoteIpProperties.getHostHeader());

spring-boot-project/spring-boot-docs/src/docs/asciidoc/appendix-application-properties.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ NOTE: Property contributions can come from additional jar files on your classpat
1313
Also, you can define your own properties.
1414

1515

16+
1617
== Core properties
1718

1819
include::config-docs/core.adoc[]

0 commit comments

Comments
 (0)