@@ -109,7 +109,7 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter
.sessionManagement().sessionCreationPolicy(SessionCreationPolicy.STATELESS).and()
// 过滤请求
.authorizeRequests()
- .antMatchers("/ws/**", "/schedule/websocket/**").anonymous()
+ .antMatchers("/ws/**", "/wsExport/**").anonymous()
// 对于登录login 注册register 验证码captchaImage 允许匿名访问
.antMatchers("/login", "/register", "/da/getCurrentProductionByEquipCode", "/da/getCurrentProductionByEquipCodes", "/captchaImage","/sms/sendSms","/business/app/getUpdate","/snms/**","/mini/**").permitAll()
// 静态资源,可匿名访问