Skip to content

Commit 8daf732

Browse files
committed
Merge branch '3.4.x'
Closes gh-44730
2 parents 6d2fb65 + 0ca4be2 commit 8daf732

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/server/ManagementServerProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* @since 2.0.0
3535
* @see ServerProperties
3636
*/
37-
@ConfigurationProperties(prefix = "management.server", ignoreUnknownFields = true)
37+
@ConfigurationProperties("management.server")
3838
public class ManagementServerProperties {
3939

4040
/**

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2019 the original author or authors.
2+
* Copyright 2012-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -27,7 +27,7 @@
2727
* @author Marten Deinum
2828
* @since 1.1.0
2929
*/
30-
@ConfigurationProperties(prefix = "spring.groovy.template", ignoreUnknownFields = true)
30+
@ConfigurationProperties("spring.groovy.template")
3131
public class GroovyTemplateProperties extends AbstractTemplateViewResolverProperties {
3232

3333
public static final String DEFAULT_RESOURCE_LOADER_PATH = "classpath:/templates/";

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
* @author Lasse Wulff
7676
* @since 1.0.0
7777
*/
78-
@ConfigurationProperties(prefix = "server", ignoreUnknownFields = true)
78+
@ConfigurationProperties("server")
7979
public class ServerProperties {
8080

8181
/**

0 commit comments

Comments
 (0)