|
|
@@ -80,6 +80,9 @@ public class JwtTokenFilter implements GlobalFilter, Ordered {
|
|
|
if (null != skipAuthUrls && Arrays.asList(skipAuthUrls).contains(url)) {
|
|
|
return allowChain(exchange, chain);
|
|
|
}
|
|
|
+ if (null != skipAuthUrls && url.contains("/alienStore/socket/")) {
|
|
|
+ return chain.filter(exchange);
|
|
|
+ }
|
|
|
if (url.startsWith("/alienStore/webjars") || url.startsWith("/alienSecond/webjars")) {
|
|
|
return allowChain(exchange, chain);
|
|
|
}
|