自定义注解时,
@Retention和@Target都能导入进来,但是却报下列错误:
RetentionPolicy cannot be resolved to a variable
ElementType cannot be resolved to a variable
没有引入这两个类
手动引入RetentionPolicy和ElementType这两个类
import java.lang.annotation.*
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.ElementType;