diff --git a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/security/BootGlobalAuthenticationConfiguration.java b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/security/BootGlobalAuthenticationConfiguration.java index 933b64fdd3..dfd6322ce7 100644 --- a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/security/BootGlobalAuthenticationConfiguration.java +++ b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/security/BootGlobalAuthenticationConfiguration.java @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package org.springframework.boot.autoconfigure.security; import java.util.Map; @@ -43,7 +44,7 @@ import org.springframework.security.config.annotation.authentication.configurers * {@link SpringBootApplication}. * * @author Rob Winch - * @since 1.2.2 + * @since 1.1.11 */ @Configuration @ConditionalOnClass(GlobalAuthenticationConfigurerAdapter.class) @@ -57,10 +58,12 @@ public class BootGlobalAuthenticationConfiguration { private static class BootGlobalAuthenticationConfigurationAdapter extends GlobalAuthenticationConfigurerAdapter { - private final ApplicationContext context; - private static final Log logger = LogFactory + + private static Log logger = LogFactory .getLog(BootGlobalAuthenticationConfiguration.class); + private final ApplicationContext context; + public BootGlobalAuthenticationConfigurationAdapter(ApplicationContext context) { this.context = context; } diff --git a/spring-boot-security-tests/spring-boot-security-tests-web-helloworld/pom.xml b/spring-boot-security-tests/spring-boot-security-tests-web-helloworld/pom.xml index 416d29c5f5..eaee1d653e 100644 --- a/spring-boot-security-tests/spring-boot-security-tests-web-helloworld/pom.xml +++ b/spring-boot-security-tests/spring-boot-security-tests-web-helloworld/pom.xml @@ -8,7 +8,7 @@ ../ spring-boot-security-tests-web-helloworld - Spring Boot Security Tests - Web Basic + Spring Boot Security Tests - Web Hello World ${project.name} http://projects.spring.io/spring-boot/