소스 검색

修改获取appid

andy 1 년 전
부모
커밋
4b16d06b56
1개의 변경된 파일5개의 추가작업 그리고 2개의 파일을 삭제
  1. 5 2
      src/main/java/com/scbfkj/uni/library/RequestUtil.java

+ 5 - 2
src/main/java/com/scbfkj/uni/library/RequestUtil.java

@@ -48,11 +48,14 @@ public class RequestUtil {
 
     }
 
-    public static String getAppId() {
+    public static String getAppId() throws Exception {
 //        请求
         ServletRequestAttributes requestAttributes = (ServletRequestAttributes) RequestContextHolder.currentRequestAttributes();
         Object appid = requestAttributes.getAttribute("appid", SCOPE_SESSION);
-        return Objects.nonNull(appid) ? appid.toString() : null;
+        if(Objects.nonNull(appid)) {
+            return  appid.toString();
+        }
+        return getApplication().get("appid").toString();
 
     }