Skip to content

Support @Import on interfaces #34820

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -98,6 +98,7 @@
* @author Phillip Webb
* @author Sam Brannen
* @author Stephane Nicoll
* @author Daeho Kwon
* @since 3.0
* @see ConfigurationClassBeanDefinitionReader
*/
@@ -549,6 +550,9 @@ private Set<SourceClass> getImports(SourceClass sourceClass) throws IOException
* <p>For example, it is common for a {@code @Configuration} class to declare direct
* {@code @Import}s in addition to meta-imports originating from an {@code @Enable}
* annotation.
* <p>As of Spring Framework 7.0, {@code @Import} annotations declared on interfaces implemented by
* the configuration class are also considered. This allows imports to be triggered
* indirectly via marker interfaces or shared base interfaces.
* @param sourceClass the class to search
* @param imports the imports collected so far
* @param visited used to track visited classes to prevent infinite recursion
@@ -558,6 +562,9 @@ private void collectImports(SourceClass sourceClass, Set<SourceClass> imports, S
throws IOException {

if (visited.add(sourceClass)) {
for (SourceClass ifc : sourceClass.getInterfaces()) {
collectImports(ifc, imports, visited);
}
for (SourceClass annotation : sourceClass.getAnnotations()) {
String annName = annotation.getMetadata().getClassName();
if (!annName.equals(Import.class.getName())) {
Original file line number Diff line number Diff line change
@@ -62,6 +62,7 @@
*
* @author Phillip Webb
* @author Stephane Nicoll
* @author Daeho Kwon
*/
@SuppressWarnings("resource")
public class ImportSelectorTests {
@@ -203,6 +204,66 @@ void invokeAwareMethodsInImportGroup() {
assertThat(TestImportGroup.environment).isEqualTo(context.getEnvironment());
}

@Test
void importAnnotationOnImplementedInterfaceIsRespected() {
AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(
InterfaceBasedConfig.class);

assertThat(context.getBean(ImportedConfig.class)).isNotNull();
assertThat(context.getBean(ImportedBean.class)).isNotNull();
assertThat(context.getBean(ImportedBean.class).name()).isEqualTo("imported");
}

@Test
void localImportShouldOverrideInterfaceImport() {
AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(
OverridingConfig.class);

assertThat(context.getBean(ImportedConfig.class)).isNotNull();
assertThat(context.getBean(ImportedBean.class)).isNotNull();
assertThat(context.getBean(ImportedBean.class).name()).isEqualTo("from class");
}

@Import(ImportedConfig.class)
interface ConfigImportMarker {
}

@Configuration
static class InterfaceBasedConfig implements ConfigImportMarker {
}

@Configuration
static class OverridingConfig implements ConfigImportMarker {
@Bean
ImportedBean importedBean() {
return new ImportedBean("from class");
}
}

static class ImportedBean {

private final String name;

ImportedBean() {
this.name = "imported";
}

ImportedBean(String name) {
this.name = name;
}

String name() {
return name;
}
}

@Configuration
static class ImportedConfig {
@Bean
ImportedBean importedBean() {
return new ImportedBean();
}
}

@Configuration
@Import(SampleImportSelector.class)
Loading
Oops, something went wrong.