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