Browse Source

👣 重构底层多租户

master
wangxiang 3 years ago
parent
commit
3cff70f0ae
  1. 2
      kicc-common/kicc-common-core/src/main/java/com/cloud/kicc/common/core/util/WebUtil.java

2
kicc-common/kicc-common-core/src/main/java/com/cloud/kicc/common/core/util/WebUtil.java

@ -162,7 +162,7 @@ public class WebUtil extends org.springframework.web.util.WebUtils { @@ -162,7 +162,7 @@ public class WebUtil extends org.springframework.web.util.WebUtils {
@NotNull
private static String[] splitClient(String header) {
if (header == null || !header.startsWith(BASIC_)) {
throw new CheckedException("请求头中client信息为空");
throw new CheckedException("请求头中client信息为空,请刷新当前页面重试!");
}
byte[] base64Token = header.substring(6).getBytes(StandardCharsets.UTF_8);
byte[] decoded;

Loading…
Cancel
Save