| | |
| | | package com.yeshi.location.app.aop; |
| | | |
| | | import com.yeshi.location.app.entity.APPPlatform; |
| | | import com.yeshi.location.app.entity.config.SystemConfigKey; |
| | | import com.yeshi.location.app.service.inter.config.SystemConfigService; |
| | | import com.yeshi.location.app.utils.ApiCodeConstant; |
| | | import com.yeshi.location.app.utils.SystemInfoUtil; |
| | | import com.yeshi.location.app.vo.AcceptData; |
| | | import net.sf.json.JSONObject; |
| | | 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; |
| | | import org.springframework.web.context.request.RequestContextHolder; |
| | | import org.springframework.web.context.request.ServletRequestAttributes; |
| | | import org.yeshi.utils.JsonUtil; |
| | | import org.yeshi.utils.StringUtil; |
| | | |
| | | import javax.annotation.Resource; |
| | | import javax.servlet.http.HttpServletRequest; |
| | | import java.io.PrintWriter; |
| | | import java.util.*; |
| | | |
| | | //客户端接口签名验证 |
| | |
| | | @Aspect |
| | | @Order(2) |
| | | public class SignValidate { |
| | | c |
| | | |
| | | private String getHttpServletParams(HttpServletRequest request) { |
| | | if (request == null) { |