我在系统中使用lombok和JPA。因此,对于实体类,它们全都看起来像:
@Getter
@Setter
@Entity
@NoArgsConstructor
@AllArgsConstructor
public class XxxEntity {
...
}
所以我的问题是可以创建一个自定义注释来将所有这些注释分组吗?
因此它看起来像:
@CustomAnnotation
public class XxxEntity {
...
}
当我使用@CustomAnnotation时,它将上面的所有注释应用于该类。
这可能吗?
谢谢。
答案 0 :(得分:2)