|
@@ -69,8 +69,8 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter {
|
|
|
.permitAll()
|
|
|
.antMatchers(HttpMethod.OPTIONS)//跨域请求会先进行一次options请求
|
|
|
.permitAll()
|
|
|
- .antMatchers("/**")//测试时全部运行访问
|
|
|
- .permitAll()
|
|
|
+// .antMatchers("/**")//测试时全部运行访问
|
|
|
+// .permitAll()
|
|
|
.anyRequest()// 除上面外的所有请求全部需要鉴权认证
|
|
|
.authenticated();
|
|
|
// 禁用缓存
|
|
@@ -112,23 +112,6 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter {
|
|
|
return new JwtAuthenticationTokenFilter();
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * 允许跨域调用的过滤器
|
|
|
- */
|
|
|
- @Bean
|
|
|
- public CorsFilter corsFilter() {
|
|
|
- UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();
|
|
|
- CorsConfiguration config = new CorsConfiguration();
|
|
|
- config.addAllowedOrigin("*");
|
|
|
- config.setAllowCredentials(true);
|
|
|
- config.addAllowedHeader("*");
|
|
|
- config.addAllowedMethod("*");
|
|
|
- source.registerCorsConfiguration("/**", config);
|
|
|
- FilterRegistrationBean bean = new FilterRegistrationBean(new CorsFilter(source));
|
|
|
- bean.setOrder(0);
|
|
|
- return new CorsFilter(source);
|
|
|
- }
|
|
|
-
|
|
|
@Bean
|
|
|
@Override
|
|
|
public AuthenticationManager authenticationManagerBean() throws Exception {
|