У меня есть конфигурация сканирования компонентов как это:
@Configuration
@ComponentScan(basePackageClasses = {ITest.class},
includeFilters = {@ComponentScan.Filter(type = FilterType.ANNOTATION, value = JdbiRepository.class)})
public class MyConfig {
}
В принципе, я хотел бы создать интерфейс сканирования, который имеет JdbiRepository
аннотацию
@JdbiRepository
public interface ITest {
Integer deleteUserSession(String id);
}
И я хотел бы создать прокси-реализацию моих интерфейсов. Для этого я зарегистрировал пользовательский SmartInstantiationAwareBeanPostProcessor
, который в основном создает необходимые экземпляры, но указанная выше конфигурация не проверяет интерфейсы с аннотацией JdbiRepository
.
Как сканировать интерфейсы с помощью пользовательской аннотации?
Изменить:
Кажется, что org.springframework.context.annotation.ClassPathScanningCandidateComponentProvider#isCandidateComponent
принимает только конкретные классы.
/**
* Determine whether the given bean definition qualifies as candidate.
* <p>The default implementation checks whether the class is concrete
* (i.e. not abstract and not an interface). Can be overridden in subclasses.
* @param beanDefinition the bean definition to check
* @return whether the bean definition qualifies as a candidate component
*/
protected boolean isCandidateComponent(AnnotatedBeanDefinition beanDefinition) {
return (beanDefinition.getMetadata().isConcrete() && beanDefinition.getMetadata().isIndependent());
}
Edit:
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Component
public @interface JdbiRepository {
/**
* The value may indicate a suggestion for a logical component name,
* to be turned into a Spring bean in case of an autodetected component.
* @return the suggested component name, if any
*/
String value() default "";
}