Skip to content
This repository was archived by the owner on Feb 23, 2023. It is now read-only.

Commit 8fecd2f

Browse files
committed
Ignore Spring Boot's ApplicationContextFactory entries
Closes gh-1593
1 parent f46ad2e commit 8fecd2f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

spring-aot/src/main/java/org/springframework/aot/factories/IgnoredFactoriesCodeContributor.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019-2021 the original author or authors.
2+
* Copyright 2019-2022 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.
@@ -40,6 +40,7 @@ class IgnoredFactoriesCodeContributor implements FactoriesCodeContributor {
4040
"org.springframework.aot.test.context.bootstrap");
4141

4242
private static final Predicate<SpringFactory> IGNORED_FACTORY_TYPES = factoryTypes(
43+
"org.springframework.boot.ApplicationContextFactory",
4344
"org.springframework.boot.autoconfigure.AutoConfigurationImportListener",
4445
"org.springframework.boot.autoconfigure.AutoConfigurationImportFilter",
4546
"org.springframework.boot.autoconfigure.EnableAutoConfiguration",

0 commit comments

Comments
 (0)