|
@@ -123,8 +123,8 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter
|
|
|
// 对于登录login 注册register 验证码captchaImage 允许匿名访问
|
|
|
.antMatchers("/login", "/register", "/captchaImage","/sendSmsCode/*","/smsLogin","/test/**", "/demo/**").permitAll()
|
|
|
.antMatchers("/websocket/**").permitAll()//websocket的
|
|
|
- .antMatchers("/front/**","/grpc/**").permitAll()//临时测试的
|
|
|
- .antMatchers("/qiniuyun/**").permitAll()//文件上传相关
|
|
|
+// .antMatchers("/front/**","/grpc/**").permitAll()//临时测试的
|
|
|
+ .antMatchers("/qiniuyun/**", "/out/**").permitAll()//文件上传相关
|
|
|
// 静态资源,可匿名访问
|
|
|
.antMatchers(HttpMethod.GET, "/", "/*.html", "/**/*.html", "/**/*.css", "/**/*.js", "/profile/**").permitAll()
|
|
|
.antMatchers("/swagger-ui.html", "/swagger-resources/**", "/webjars/**", "/*/api-docs", "/druid/**").permitAll()
|