浅谈Spring自定义注解从入门到精通
在业务开发过程中我们会遇到形形色色的注解,但是框架自有的注解并不是总能满足复杂的业务需求,我们可以自定义注解来满足我们的需求。根据注解使用的位置,文章将分成字段注解、方法、类注解来介绍自定义注解
字段注解
字段注解一般是用于校验字段是否满足要求,hibernate-validate依赖就提供了很多校验注解 ,如@notnull、@range等,但是这些注解并不是能够满足所有业务场景的。比如我们希望传入的参数在指定的string集合中,那么已有的注解就不能满足需求了,需要自己实现。
自定义注解
定义一个@check注解,通过@interface声明一个注解
@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泛型接口
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方法初始化工作
使用方式
定义一个实体类
@data public class user { /** * 姓名 * */ private string name; /** * 性别 man or women * */ @check(paramvalues = {"man", "woman"}) private string sex; }
对sex字段加校验,其值必须为woman或者man
测试
@restcontroller("/api/test") public class testcontroller { @postmapping public object test(@validated @requestbody user user) { return "hello world"; } }
注意需要在user对象上加上@validated注解,这里也可以使用@valid注解
方法、类注解
在开发过程中遇到过这样的需求,如只有有权限的用户的才能访问这个类中的方法或某个具体的方法、查找数据的时候先不从数据库查找,先从guava cache中查找,在从redis查找,最后查找mysql(多级缓存)。
这时候我们可以自定义注解去完成这个要求,第一个场景就是定义一个权限校验的注解,第二个场景就是定义spring-data-redis包下类似@cacheable的注解。
权限注解
自定义注解
@target({ elementtype.method, elementtype.type}) @retention(retentionpolicy.runtime) public @interface permissioncheck { /** * 资源key * */ string resourcekey(); }
该注解的作用范围为类或者方法上
拦截器类
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(); //todo 权限校验一般需要获取用户信息,通过查询数据库进行权限校验 //todo 这里只进行简单演示,如果resourcekey为testkey则校验通过,否则不通过 if ("testkey".equals(resourcekey)) { return true; } return false; } /** * 根据handlermethod返回注解信息 * * @param handlermethod 方法对象 * @return permissioncheck注解 */ private permissioncheck findpermissioncheck(handlermethod handlermethod) { //在方法上寻找注解 permissioncheck permission = handlermethod.getmethodannotation(permissioncheck.class); if (permission == null) { //在类上寻找注解 permission = handlermethod.getbeantype().getannotation(permissioncheck.class); } return permission; } }
权限校验的逻辑就是你有权限你就可以访问,没有就不允许访问,本质其实就是一个拦截器。我们首先需要拿到注解,然后获取注解上的字段进行校验,校验通过返回true,否则返回false
测试
@getmapping("/api/test") @permissioncheck(resourcekey = "test") public object testpermissioncheck() { return "hello world"; }
该方法需要进行权限校验所以添加了permissioncheck注解
缓存注解
自定义注解
@target({ elementtype.method, elementtype.type}) @retention(retentionpolicy.runtime) public @interface customcache { /** * 缓存的key值 * */ string key(); }
注解可以用在方法或类上,但是缓存注解一般是使用在方法上的
切面
@aspect @component public class customcacheaspect { /** * 在方法执行之前对注解进行处理 * * @param pjd * @param customcache 注解 * @return 返回中的值 * */ @around("@annotation(com.cqupt.annotation.customcache) && @annotation(customcache)") public object dealprocess(proceedingjoinpoint pjd, customcache customcache) { object result = null; if (customcache.key() == null) { //todo throw error } //todo 业务场景会比这个复杂的多,会涉及参数的解析如key可能是#{id}这些,数据查询 //todo 这里做简单演示,如果key为testkey则返回hello world if ("testkey".equals(customcache.key())) { return "hello word"; } //执行目标方法 try { result = pjd.proceed(); } catch (throwable throwable) { throwable.printstacktrace(); } return result; } }
因为缓存注解需要在方法执行之前有返回值,所以没有通过拦截器处理这个注解,而是通过使用切面在执行方法之前对注解进行处理。如果注解没有返回值,将会返回方法中的值
测试
@getmapping("/api/cache") @customcache(key = "test") public object testcustomcache() { return "don't hit cache"; }
小结
本篇文章主要介绍了开发过程中遇到自定义注解的场景以及自定义注解实现。如有纰漏,欢迎指正。
源码
https://github.com/tiantianupup/custom-annotation
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。