| | |
| | | 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; |
| | |
| | | @Aspect |
| | | @Order(2) |
| | | public class PermissionValidateAspect { |
| | | public static final String EDP = "execution(* com.ks.tool.bkz.controller.user.*.*.*(..))"; |
| | | public static final String EDP = "execution(* com.ks.tool.bkz.controller.user.*.*.*(..))"; |
| | | |
| | | public static String KEY = ""; |
| | | public static String KEY = ""; |
| | | |
| | | static { |
| | | KEY = Constant.systemCommonConfig.getSignKey(); |
| | | } |
| | | static { |
| | | KEY = ""; |
| | | } |
| | | |
| | | @Around(EDP) |
| | | public Object around(ProceedingJoinPoint joinPoint) throws Throwable { |
| | | |
| | | } |
| | | |
| | | } |