字段注解
字段注解一般是用于校验字段是否满足要求,hibernate-validate依赖就提供了很多校验注解 ,如@NotNull、@Range等,但是这些注解并不是能够满足所有业务场景的。比如我们希望传入的参数在指定的String集合中,那么已有的注解就不能满足需求了,需要自己实现。
自定义注解
定义一个@Check注解,通过@interface声明一个注解
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| @Target({ ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Constraint(validatedBy = ParamConstraintValidated.class) public @interface Check {
String[] paramValues();
String message() default "参数不为指定值"; Class<?>[] groups() default {}; Class<? extends Payload>[] payload() default {}; }
|
@Target 定义注解的使用位置,用来说明该注解可以被声明在那些元素之前。
- ElementType.TYPE:说明该注解只能被声明在一个类前。
- ElementType.FIELD:说明该注解只能被声明在一个类的字段前。
- ElementType.METHOD:说明该注解只能被声明在一个类的方法前。
- ElementType.PARAMETER:说明该注解只能被声明在一个方法参数前。
- ElementType.CONSTRUCTOR:说明该注解只能声明在一个类的构造方法前。
- ElementType.LOCAL_VARIABLE:说明该注解只能声明在一个局部变量前。
- ElementType.ANNOTATION_TYPE:说明该注解只能声明在一个注解类型前。
- ElementType.PACKAGE:说明该注解只能声明在一个包名前
@Constraint 通过使用validatedBy来指定与注解关联的验证器
@Retention用来说明该注解类的生命周期。
- RetentionPolicy.SOURCE: 注解只保留在源文件中
- RetentionPolicy.CLASS : 注解保留在class文件中,在加载到JVM虚拟机时丢弃
- RetentionPolicy.RUNTIME: 注解保留在程序运行期间,此时可以通过反射获得定义在某个类上的所有注解。
验证器类
验证器类需要实现ConstraintValidator泛型接口
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| public class ParamConstraintValidated implements ConstraintValidator<Check, Object> {
private List<String> paramValues;
@Override public void initialize(Check constraintAnnotation) { paramValues = Arrays.asList(constraintAnnotation.paramValues()); }
public boolean isValid(Object o, ConstraintValidatorContext constraintValidatorContext) { if (paramValues.contains(o)) { return true; } return false; } }
|
第一个泛型参数类型Check:注解,第二个泛型参数Object:校验字段类型。需要实现initialize和isValid方法,isValid方法为校验逻辑,initialize方法初始化工作
使用方式
定义一个实体类
1 2 3 4 5 6 7 8 9 10 11 12 13
| @Data public class User {
private String name;
@Check(paramValues = {"man", "woman"}) private String sex; }
|
对sex字段加校验,其值必须为woman或者man
测试
1 2 3 4 5 6 7
| @RestController("/api/test") public class TestController { @PostMapping public Object test(@Validated @RequestBody User user) { return "hello world"; } }
|
注意需要在User对象上加上@Validated注解,这里也可以使用@Valid注解
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> <version>2.0.1.Final</version> </dependency>
<dependency> <groupId>org.hibernate.validator</groupId> <artifactId>hibernate-validator</artifactId> <version>6.1.6.Final</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency>
|
方法、类注解
在开发过程中遇到过这样的需求,如只有有权限的用户的才能访问这个类中的方法或某个具体的方法、查找数据的时候先不从数据库查找,先从guava cache中查找,在从redis查找,最后查找mysql(多级缓存)。
这时候我们可以自定义注解去完成这个要求,第一个场景就是定义一个权限校验的注解,第二个场景就是定义spring-data-redis包下类似@Cacheable的注解。
权限注解
自定义注解
1 2 3 4 5 6 7 8
| @Target({ ElementType.METHOD, ElementType.TYPE}) @Retention(RetentionPolicy.RUNTIME) public @interface PermissionCheck {
String resourceKey(); }
|
该注解的作用范围为类或者方法上
拦截器类
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
| public class PermissionCheckInterceptor extends HandlerInterceptorAdapter {
@Override public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception { HandlerMethod handlerMethod = (HandlerMethod)handler; PermissionCheck permission = findPermissionCheck(handlerMethod);
if (permission == null) { return true; }
String resourceKey = permission.resourceKey();
if ("testKey".equals(resourceKey)) { return true; }
return false; }
private PermissionCheck findPermissionCheck(HandlerMethod handlerMethod) { PermissionCheck permission = handlerMethod.getMethodAnnotation(PermissionCheck.class); if (permission == null) { permission = handlerMethod.getBeanType().getAnnotation(PermissionCheck.class); }
return permission; } }
|
权限校验的逻辑就是你有权限你就可以访问,没有就不允许访问,本质其实就是一个拦截器。我们首先需要拿到注解,然后获取注解上的字段进行校验,校验通过返回true,否则返回false
测试
1 2 3 4 5
| @GetMapping("/api/test") @PermissionCheck(resourceKey = "test") public Object testPermissionCheck() { return "hello world"; }
|
该方法需要进行权限校验所以添加了PermissionCheck注解
1 2 3 4 5 6 7 8
| @Configuration public class PermissionCheckConfig implements WebMvcConfigurer { @Override public void addInterceptors(InterceptorRegistry registry) { InterceptorRegistration registration = registry.addInterceptor(new PermissionCheckInterceptor()); registration.addPathPatterns("/"); } }
|
需要注册拦截器,我也很迷
缓存注解
自定义注解
1 2 3 4 5 6 7 8
| @Target({ ElementType.METHOD, ElementType.TYPE}) @Retention(RetentionPolicy.RUNTIME) public @interface CustomCache {
String key(); }
|
注解可以用在方法或类上,但是缓存注解一般是使用在方法上的
切面
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
| @Aspect @Component public class CustomCacheAspect {
@Around("@annotation(com.cqupt.annotation.CustomCache) && @annotation(customCache)") public Object dealProcess(ProceedingJoinPoint pjd, CustomCache customCache) { Object result = null;
if (customCache.key() == null) { }
if ("testKey".equals(customCache.key())) { return "hello word"; }
try { result = pjd.proceed(); } catch (Throwable throwable) { throwable.printStackTrace(); }
return result; } }
|
因为缓存注解需要在方法执行之前有返回值,所以没有通过拦截器处理这个注解,而是通过使用切面在执行方法之前对注解进行处理。如果注解没有返回值,将会返回方法中的值
测试
1 2 3 4 5
| @GetMapping("/api/cache") @CustomCache(key = "test") public Object testCustomCache() { return "don't hit cache"; }
|
1 2 3 4
| <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId> </dependency>
|