admin
2020-06-03 622a0f6cffe4b2178518f4b9775a53832c0e77d8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.ks.tool.bkz.aspact;
 
import com.yeshi.fanli.util.Constant;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Component;
 
//权限检测
@Component
@Aspect
@Order(2)
public class PermissionValidateAspect {
    public static final String EDP = "execution(* com.ks.tool.bkz.controller.user.*.*.*(..))";
 
    public static String KEY = "";
 
    static {
        KEY = Constant.systemCommonConfig.getSignKey();
    }
 
    @Around(EDP)
    public Object around(ProceedingJoinPoint joinPoint) throws Throwable {
 
    }
 
}