步骤
- 使用@interface 自定义注解
- 编写注解处理类,实现BeanPostProcessor接口
原理
实现BeanPostProcessor接口的类即为Bean后置处理器,Spring加载机制会在所有Bean初始化的时候遍历调用每个Bean后置处理器。
其顺序为:Bean实例化-》依赖注入-》Bean后置处理器-》@PostConstruct
缺陷
只有在会示例化成Bean的类中使用,注解才会生效。(因为是使用了Bean后置处理器实现的嘛)
代码示例
自定义注解接口
1 | import org.springframework.stereotype.Component; |
注解处理类
1 | import org.springframework.beans.BeansException; |
注解使用类
1 | import org.springframework.stereotype.Service; |
测试类
1 | import com.markey.annotations.Boy.HelloBoy; |
注解无效示例
测试类
1 | import com.markey.annotations.Boy.HelloBoy; |
Tips
其实Spring很多原生注解(例如@Autowired,其处理类是AutowiredAnnotationBeanPostProcessor),也是通过实现BeanPostProcessor接口这种方式来实现的。