|
@@ -99,6 +99,10 @@ public class JwtInterceptor implements HandlerInterceptor {
|
|
if (SLASH.equals(uri)) {
|
|
if (SLASH.equals(uri)) {
|
|
return true;
|
|
return true;
|
|
}
|
|
}
|
|
|
|
+ // 仅校验内容平台接口
|
|
|
|
+ if (!uri.startsWith("/contentPlatform")) {
|
|
|
|
+ return true;
|
|
|
|
+ }
|
|
for (String path : excludePaths) {
|
|
for (String path : excludePaths) {
|
|
if (uri.startsWith(path)) {
|
|
if (uri.startsWith(path)) {
|
|
return true;
|
|
return true;
|