@SpringBootApplication
@EnableSelectImportService
public class SelectImportApp {
public static void main(String[] args) {
ConfigurableApplicationContext context = SpringApplication.run(SelectImportApp.class);
SelectImportService service = context.getBean(SelectImportService.class);
service.hello();
}
}
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
@Import(MySelectImport.class)
public @interface EnableSelectImportService {
}
public class MySelectImport implements ImportSelector {
@Override
public String[] selectImports(AnnotationMetadata importingClassMetadata) {
return new String[]{SelectImportService.class.getName()};
}
}
public class SelectImportService {
public void hello(){
System.out.println("hello selectimport");
}
}
原文:https://www.cnblogs.com/yinchh/p/12749138.html