Commit 05ae070b by 宋祥
parents c21b4584 9d2fc311
...@@ -82,8 +82,10 @@ public class PlatServiceValidateFilter implements Filter { ...@@ -82,8 +82,10 @@ public class PlatServiceValidateFilter implements Filter {
// modify by songx at 20240826 if条件去掉authed,否则token会串 // modify by songx at 20240826 if条件去掉authed,否则token会串
if (this.iTokenValidateFilter != null) { if (this.iTokenValidateFilter != null) {
this.iTokenValidateFilter.doFilter(httpServletRequest, httpServletResponse); this.iTokenValidateFilter.doFilter(httpServletRequest, httpServletResponse);
if (!authed) {
authed = this.isAuthedByJwt(httpServletRequest); authed = this.isAuthedByJwt(httpServletRequest);
} }
}
Map headerMap = new HashMap(); Map headerMap = new HashMap();
Enumeration<String> headerNames = httpServletRequest.getHeaderNames(); Enumeration<String> headerNames = httpServletRequest.getHeaderNames();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment