|
@@ -45,6 +45,7 @@ public class SignVerifyAspect {
|
|
String sign = request.getHeader(verifySign.signParam().toLowerCase());
|
|
String sign = request.getHeader(verifySign.signParam().toLowerCase());
|
|
String appId = request.getHeader(verifySign.appId().toLowerCase());
|
|
String appId = request.getHeader(verifySign.appId().toLowerCase());
|
|
|
|
|
|
|
|
+ log.info("verifySign--requestPath:{},sign:{},appId:{}",request.getRequestURL(),sign,appId);
|
|
if(StringUtils.isBlank(sign) || StringUtils.isBlank(appId)){
|
|
if(StringUtils.isBlank(sign) || StringUtils.isBlank(appId)){
|
|
throw new BusinessException(ResultCode.SIGN_ERROR);
|
|
throw new BusinessException(ResultCode.SIGN_ERROR);
|
|
}
|
|
}
|