Java切面中各个方法对象、参数对象、反射以及注解的分析

本文详细介绍了Java切面中的环绕增强如何配合反射和注解进行操作。通过 ProceedingJoinPoint 获取切入点信息,结合ServletRequestAttributes获取请求对象,进一步分析方法对象、参数类型和名称,以及参数的注解信息。利用@Around注解定义切入条件,展示了Java切面在业务处理中的灵活性。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

说明:
本文以环绕切面配合反射、注解为示例

	@Around(value = "cutMethods() && withAnnotationMethods()")
    public Object around(ProceedingJoinPoint point) throws Throwable {
        long startTime = System.currentTimeMillis();

        //通过请求上下文持有者,获取 Servlet 容器对象
        ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
        //通过 Servlet 容器对象获取 request 请求对象
        HttpServletRequest request = attributes.getRequest();

        MethodSignature methodSignature = (MethodSignature) point.getSignature();
        Method method = methodSignature.getMethod();
        BusinessLock lockAnnotation = method.getAnnotation(BusinessLock.class);

        //获取所有
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值