接口 AutowiredBeanProcessor
-
- 所有已知实现类:
BaseAutowiredBeanPostProcessor,BaseAutowiredBeanProcessor,ProxySPIAutowiredBeanProcessor,SmartAutowiredBeanProcessor,SPIAutowiredBeanProcessor
public interface AutowiredBeanProcessor- 作者:
- caizhihao
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 ObjectgetInjectedBean(AutowiredInvocation invocation)How to obtain the beans that need to be injectedList<Class<? extends Annotation>>interceptAnnotation()Specify the injection annotations that need to be intercepted
-
-
-
方法详细资料
-
interceptAnnotation
List<Class<? extends Annotation>> interceptAnnotation()
Specify the injection annotations that need to be intercepted- 返回:
- the custom autowired annotations
-
getInjectedBean
Object getInjectedBean(AutowiredInvocation invocation)
How to obtain the beans that need to be injected- 参数:
invocation- Context information when injected- 返回:
- get inject bean
-
-