spring的注解应该标记在什么地方?
作者:互联网
ctrl+鼠标左键点击要查看的注解:
例如查看Autowired:
@Target({ElementType.CONSTRUCTOR, ElementType.METHOD, ElementType.PARAMETER, ElementType.FIELD, ElementType.ANNOTATION_TYPE}) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface Autowired {
重点查看@Target中的参数就是可标记的位置:
可以发现有:
CONSTRUCTOR:构造器 METHOD:方法 PARAMETER:参数
......
标签:Target,标记,spring,Autowired,CONSTRUCTOR,注解,ElementType,PARAMETER,METHOD 来源: https://www.cnblogs.com/0099-ymsml/p/16326280.html