java aop注解拦截_Spring AOP 拦截指定注解标识的类或方法

代码Demo

@Aspect

@Component

@Order(10)

public class BidAuthorityProxy {

/**

* 扫描指定包下的类中使用@EnableRoleAuthority注解修饰的类

*/

@Around("@within(com.core.annotation.EnableRoleAuthority) && within(com.bid..*)")

public Object verifyRoleExecuteCommand(ProceedingJoinPoint pjp) throws Throwable {

// 获取当前拦截方法的对象

MethodSignature msig = (MethodSignature) pjp.getSignature();

Method targetMethod = pjp.getTarget().getClass().getDeclaredMethod(msig.getName(), msig.getMethod().getParameterTypes());

// 获取当前方法注解中的值

VerifyRoleAuthority annotation = targetMethod.getAnnotation(VerifyRoleAuthority.class);

// 如果类上面没有注解,则获取接口上此方法的注解

if (annotation == null) {

Class>[] inters = pjp.getTarget().getClass().getInterfaces();

for (Class> inter : inters) {

Method targetInterMethod = inter.getDeclaredMethod(msig.getName(), msig.getMethod().getParameterTypes());

annotation = targetInterMethod.getAnnotation(VerifyRoleAuthority.class);

if (annotation != null) {

break;

}

}

}

// 获取到注解中的值后进行后续自定义逻辑操作

return pjp.proceed();// 执行方法

}

}

相关说明:

AOP中扫描指定注解相关说明

(1)@annotation:用来拦截所有被某个注解修饰的方法

(2)@within:用来拦截所有被某个注解修饰的类

(3)within:用来指定扫描的包的范围

0838f5f1242f88af75cd184d8915fa39.png

e1089cbef1b3fe9d76f1d8e0af658b17.png

曾梦想仗剑走天涯XX

发布了19 篇原创文章 · 获赞 24 · 访问量 7万+

私信

关注

标签:Spring,within,VerifyRoleAuthority,annotation,AOP,注解,msig,pjp

来源: https://blog.csdn.net/java_faep/article/details/104005399

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/380726.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

其实我是一个很偏激的人,不信你打我一下试试看

rt转载于:https://www.cnblogs.com/rexhost/archive/2004/09/23/45969.html

python关键字和保留字_或带有Python示例的关键字

python关键字和保留字Python或关键字 (Python or keyword) or is a keyword (case-sensitive) in python, it is a logical operator actually, it is used to validate more than one conditions. It is similar to Logical OR (||) operator in C, C programming. It require…

php的文件包含总结 include require include_once require_once

文件包含相当于将另一个文件的代码全部复制到另一个文件中,然后执行。包含文件很有用,如果您需要在网站的多张页面上引用相同的 PHP、HTML 或文本的话。比如说我们在浏览csdn很多页面中,基本都是看到下面的内容,为了不要每次都要写…

社会生活中的著名法则(z)

社会生活中的著名法则 [摘要]社会生活中的著名法则 一、 马太效应 二、 手表定理 三、 不值得定律 四、 彼得原理 五、 零和游戏原理 六、 华盛顿合作规律 七、 酒与污水定律 八、 水桶定律 九、 蘑菇管理 十、 奥卡姆剃刀定律 十一、 二八法则 十二、 钱的问题  一、马太效应…

判断滚动条是否到达页面的尾部

//取窗口滚动条高度 functiongetScrollTop() { varscrollTop0; if(document.documentElement&&document.documentElement.scrollTop) { scrollTopdocument.documentElement.scrollTop; } elseif(document.body) { scrollTopdocument.body.scrollTop; } returnscr…

python的pass语句_适用于pass语句的Python程序

python的pass语句Prerequisite: pass statement in Python 先决条件: Python中的pass语句 In the below program, we have a string and printing only alphabets and passing the else statement – where the character in not an alphabet. 在下面的程序中&…

php终止脚本执行(exit、die、return)

终止php的脚本执行&#xff0c;我们可以使用exit&#xff0c;die&#xff0c;return 0x01 exit和die&#xff0c; 当程序运行到他们时&#xff0c;直接退出程序&#xff0c;不在运行 <?phpheader(content-type:text/html;charsetutf-8);echo 使用exit前;echo <br>…

Python中的break语句

Python break语句 (Python break statement) Like other programming languages, in python, break statement is used to terminate the loops execution. It terminates the loops execution and transfers the control to the statement written after the loop. 与其他编程…

php的延时sleep函数

语法&#xff1a;sleep&#xff08;秒数&#xff09; <?phpheader(content-type:text/html;charsetutf-8);sleep&#xff08;5&#xff09;;echo 我的名字是DL_one; ?>输出时可以发现要等待一段时间才能输出 sleep函数在代码测试时很有用

25种成为百万富翁的方法

1、做你真正感兴趣的事——你会花很多时间在上面&#xff0c;因此你一定要感兴趣才行&#xff0c;如果不是这样的话&#xff0c;你不合愿意把时间花在上面&#xff0c;就得不到成功。  2、自己当老板&#xff0c;为别人打工&#xff0c;你绝不会变成巨富&#xff0c;老板一心…

java byte数组string_byte数组和String之间的转化

JAVA里面关于byte数组和String之间的转换问题把byte转化成string&#xff0c;必须经过编码。例如下面一个例子:import java.io.UnsupportedEncodingException;public class test{public static void main(String g[]) {String s "12345abcd";byte b[] s.getBytes()…

arcsde 和oracle(双机热备)分布式安装(转载)

环境&#xff1a; oracle10gR2安装在两台服务器上&#xff0c;但只是做双机热备&#xff0c;操作系统均为windows server 2003 sp2 arcsde安装在第三台机器上&#xff0c;操作系统为windows server 2003 sp2 安装步骤&#xff1a; 1、需要在ArcSDE的安装机器上安装Or…

python中文件描述符_Python中的描述符

python中文件描述符In Python, a class that implements a get, set or delete methods for an object is called descriptors. Descriptors are the way to create attributes and add managed attributes to objects. These are used to protect the attributes from changes…

PHP的foeach用法

PHP 4 引入了 foreach 结构&#xff0c;用foreach可以帮助我们简单遍历数组&#xff0c;foreach 仅能用于数组&#xff0c;当用于其它数据类型或者一个未初始化的变量时会产生错误。 其用法为&#xff1a; foreach(数组 as 键 > 值){//循环体}当数组只有值&#xff0c;没有…

不为事务而事务

背景&#xff1a; 最近在做一个项目&#xff0c;需要用到两个第三方组件&#xff1a;北京莲塘语音组件和CMailSever前者作为语音聊天室的二次开发组件&#xff0c;后者用于网站的小型邮件系统二次开发组件 需求&#xff1a; 用户在主程序登陆后&#xff0c;无须再次登陆…

英语学习过程中的几点体会(1)

这几天一直在解决英语学习中的单词问题.确切的说就是积累单词量,在我们这里也不叫单词量,我给它起了个新名称 叫做:音像量 关于音像量的积累.遇到了很多问题. 比如我们找了很多资料,有国内的,国外的.视频,图片.甚至我们还自己做了两版词库.但是每个资料都有不同的问题. 每次开会…

java split 坑_java String split 踩坑记

split操作是出镜率非常高的一个方法, 但是我们使用中通常会使用两个类提供的split方法, 他们在入参类型一样, 但是效果却有一些差别, 稍不注意容易踩坑.java.lang.String#splitString提供了两个重载方法:public String[] split(String regex, int limit)public String[] split(…

c#给定编码中的字符无效_C#程序检查给定的字符串是否等于(==)运算符

c#给定编码中的字符无效Input two strings and check whether they are equal or not using C# program. 输入两个字符串&#xff0c;并使用C&#xff03;程序检查它们是否相等。 用于字符串比较的C&#xff03;代码 (C# code for string comparison) Here, we are asking for…

bugzilla学习

October 03, 2003 bugzilla学习 Bugzilla是一个bug追踪系统&#xff0c;用以管理bug提交、bug消除&#xff0c;不仅能降低同样错误的重复发生&#xff0c;提高开效率&#xff0c;而且有助于项目管理的难度。更有人打算用借助此系统&#xff0c;用前人的bug来教育新来的程序员&a…

vbs向指定的日志文件添加日志

向指定的文件写字符串&#xff0c;第三个参数指定是否删除原来的内容 Function Z_WriteLog(sFileName, sText)Dim fs, fso, sLogsLog Now() & ": " & sTextset fs CreateObject("Scripting.FileSystemObject")set fso fs.OpenTextFile(sFileNam…