
大概率拦截器拦截下来了,我们F12看网络请求进行排查

都是 /webjars/ 路径下的资源被拦截了,只需在拦截器中添加该白名单即可
"/webjars/**"具体配置如下:
@Configuration
public class WebConfig implements WebMvcConfigurer {
private final LoginInterceptor loginInterceptor;
public WebConfig(LoginInterceptor loginInterceptor) {
this.loginInterceptor = loginInterceptor;
}
// 拦截器
@Override
public void addInterceptors(InterceptorRegistry registry) {
// 向拦截器注册表(InterceptorRegistry)中添加了一个拦截器 (loginInterceptor)
registry.addInterceptor(loginInterceptor)
// 指定接口不拦截
.excludePathPatterns(
"/swagger-ui/**",
"/v3/api-docs/**",
"/doc.html",
"/webjars/**"
);
}
}
















![[PyQt5] 窗口接收WM_COPY消息](https://img-blog.csdnimg.cn/direct/2bd655b074d0466983d24b773ecf81c0.png)


