package com.ks.tool.bkz.aspact;
|
|
import org.aspectj.lang.annotation.Aspect;
|
import org.springframework.core.annotation.Order;
|
import org.springframework.stereotype.Component;
|
|
//客户端接口签名验证
|
@Component
|
@Aspect
|
@Order(1)
|
public class SignValidateAspect {
|
public static final String EDP = "execution(* com.ks.tool.bkz.controller.*.*.*(..))";
|
|
public static String KEY = "";
|
|
static {
|
KEY = "";
|
}
|
|
|
}
|