Ver código fonte

权限过滤

gao.qiang 1 ano atrás
pai
commit
1363b934ed

+ 1 - 1
base-framework/src/main/java/com/ozs/framework/config/SecurityConfig.java

@@ -115,7 +115,7 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter
                 // 过滤请求
                 .authorizeRequests()
                 // 对于登录login 注册register 验证码captchaImage 允许匿名访问
-                .antMatchers("/login", "/loginApp", "/register", "/captchaImage", "/sdk/**", "/test/**", "/api/**").permitAll()
+                .antMatchers("/login", "/loginApp", "/register", "/captchaImage", "/sdk/**", "/test/**", "/api/**","/baseVehicle/vehicleList/**").permitAll()
                 // 静态资源,可匿名访问
                 .antMatchers(HttpMethod.GET, "/", "/*.html", "/**/*.html", "/**/*.css", "/**/*.js", "/profile/**").permitAll()
                 .antMatchers("/swagger-ui.html", "/swagger-resources/**", "/webjars/**", "/*/api-docs", "/druid/**").permitAll()