摘要: /** * 自定义注解:校验非空字段 * */ @Documented @Inherited // 接口、类、枚举、注解 @Target(ElementType.FIELD) //只是在运行时通过反射机制来获取注解,然后自己写相应逻辑(所谓注解解析器) @Retention(RetentionPolicy.RUNTIME) public @interface CheckNull { ... 阅读全文
posted @ 2019-04-10 14:16 A小小高 阅读(536) 评论(0) 推荐(1) 编辑