您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
这篇文章主要介绍了springboot aspect通过@annotation进行拦截的案例分析,具有一定借鉴价值,需要的朋友可以参考下。希望大家阅读完这篇文章后大有收获。下面让小编带着大家一起了解一下。
annotation就是注解的意思,在我们使用的拦截器时,可以通过业务层添加的某个注解,对业务方法进行拦截,之前我们在进行统一方法拦截时使用的是execution
,而注解的拦截我们使用@annotation
即可,我们可以做个例子,比如搞个防止重复提交的注解,然后在拦截器里去写防止重复提交的逻辑就好了。
拦截器数据源
/** * 防止重复提交 * * @author BD-PC220 */ @Documented @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.METHOD}) public @interface RepeatSubmit { /** * 间隔多长时间提交,默认1秒 * * @return */ long time() default 1; /** * 作为验证重复提交的key, * * @return */ String key(); }
业务实现的拦截器代码
/** * URL重复提交拦截器. */ @Slf4j @Component @Aspect public class RepeatSubmitAspect { @Autowired StringRedisTemplate redisTemplate; @Around("@annotation(repeatSubmit)") public Object around(ProceedingJoinPoint proceedingJoinPoint, RepeatSubmit repeatSubmit) throws Throwable { log.info("repeatSubmit={}", repeatSubmit.toString()); } }
在单元测试里去建立业务方法,然后建立单元测试的方法等
@Component public class RepeatSubmitController { @RepeatSubmit(key = "get") public String get() { return "success"; } }
测试代码
@RunWith(SpringRunner.class) @SpringBootTest() @Slf4j public class RepeatSubmitTest { @Autowired RepeatSubmitController repeatSubmitController; @Test public void test() { log.info(repeatSubmitController.get()); } }
感谢你能够认真阅读完这篇文章,希望小编分享springboot aspect通过@annotation进行拦截的案例分析内容对大家有帮助,同时也希望大家多多支持亿速云,关注亿速云行业资讯频道,遇到问题就找亿速云,详细的解决方法等着你来学习!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。