次のようなコンポーネント スキャン構成があります。
@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());
}
編集:
@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 "";
}