RuoYi
2025-12-04 90cbabb7a7a4b0dc5cf76f926b6cd63b989099f4
ruoyi-common/ruoyi-common-security/src/main/java/com/ruoyi/common/security/aspect/PreAuthorizeAspect.java
@@ -56,16 +56,8 @@
        // 注解鉴权
        MethodSignature signature = (MethodSignature) joinPoint.getSignature();
        checkMethodAnnotation(signature.getMethod());
        try
        {
            // 执行原有逻辑
            Object obj = joinPoint.proceed();
            return obj;
        }
        catch (Throwable e)
        {
            throw e;
        }
        // 执行原有逻辑
        return joinPoint.proceed();
    }
    /**