|
@@ -9,7 +9,6 @@ import org.springframework.security.authentication.ProviderManager;
|
|
|
import org.springframework.security.authentication.dao.DaoAuthenticationProvider;
|
|
|
import org.springframework.security.config.annotation.method.configuration.EnableMethodSecurity;
|
|
|
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
|
|
|
-import org.springframework.security.config.annotation.web.configurers.ExpressionUrlAuthorizationConfigurer;
|
|
|
import org.springframework.security.config.http.SessionCreationPolicy;
|
|
|
import org.springframework.security.core.userdetails.UserDetailsService;
|
|
|
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
|
|
@@ -29,7 +28,8 @@ import com.ruoyi.framework.security.handle.LogoutSuccessHandlerImpl;
|
|
|
*/
|
|
|
@EnableMethodSecurity(prePostEnabled = true, securedEnabled = true)
|
|
|
@Configuration
|
|
|
-public class SecurityConfig {
|
|
|
+public class SecurityConfig
|
|
|
+{
|
|
|
/**
|
|
|
* 自定义用户认证逻辑
|
|
|
*/
|
|
@@ -70,7 +70,8 @@ public class SecurityConfig {
|
|
|
* 身份验证实现
|
|
|
*/
|
|
|
@Bean
|
|
|
- public AuthenticationManager authenticationManager() {
|
|
|
+ public AuthenticationManager authenticationManager()
|
|
|
+ {
|
|
|
DaoAuthenticationProvider daoAuthenticationProvider = new DaoAuthenticationProvider();
|
|
|
daoAuthenticationProvider.setUserDetailsService(userDetailsService);
|
|
|
daoAuthenticationProvider.setPasswordEncoder(bCryptPasswordEncoder());
|
|
@@ -93,64 +94,47 @@ public class SecurityConfig {
|
|
|
* authenticated | 用户登录后可访问
|
|
|
*/
|
|
|
@Bean
|
|
|
- protected SecurityFilterChain filterChain(HttpSecurity httpSecurity) throws Exception {
|
|
|
-// return httpSecurity
|
|
|
-// // CSRF禁用,因为不使用session
|
|
|
-// .csrf(csrf -> csrf.disable())
|
|
|
-// // 禁用HTTP响应标头
|
|
|
-// .headers((headersCustomizer) -> {
|
|
|
-// headersCustomizer.cacheControl(cache -> cache.disable()).frameOptions(options -> options.sameOrigin());
|
|
|
-// })
|
|
|
-// // 认证失败处理类
|
|
|
-// .exceptionHandling(exception -> exception.authenticationEntryPoint(unauthorizedHandler))
|
|
|
-// // 基于token,所以不需要session
|
|
|
-// .sessionManagement(session -> session.sessionCreationPolicy(SessionCreationPolicy.STATELESS))
|
|
|
-// // 注解标记允许匿名访问的url
|
|
|
-// .authorizeHttpRequests((requests) -> {
|
|
|
-// permitAllUrl.getUrls().forEach(url -> requests.antMatchers(url).permitAll());
|
|
|
-// // 对于登录login 注册register 验证码captchaImage 允许匿名访问
|
|
|
-// requests.antMatchers("/login", "/register", "/captchaImage").permitAll()
|
|
|
-// // 静态资源,可匿名访问
|
|
|
-// .antMatchers(HttpMethod.GET, "/", "/*.html", "/**/*.html", "/**/*.css", "/**/*.js", "/profile/**").permitAll()
|
|
|
-// .antMatchers("/swagger-ui.html", "/swagger-resources/**", "/webjars/**", "/*/api-docs", "/druid/**").permitAll()
|
|
|
-// // 除上面外的所有请求全部需要鉴权认证
|
|
|
-// .anyRequest().authenticated();
|
|
|
-// })
|
|
|
-// // 添加Logout filter
|
|
|
-// .logout(logout -> logout.logoutUrl("/logout").logoutSuccessHandler(logoutSuccessHandler))
|
|
|
-// // 添加JWT filter
|
|
|
-// .addFilterBefore(authenticationTokenFilter, UsernamePasswordAuthenticationFilter.class)
|
|
|
-// // 添加CORS filter
|
|
|
-// .addFilterBefore(corsFilter, JwtAuthenticationTokenFilter.class)
|
|
|
-// .addFilterBefore(corsFilter, LogoutFilter.class)
|
|
|
-// .build();
|
|
|
-
|
|
|
-
|
|
|
- // 允许匿名访问的URLs
|
|
|
- ExpressionUrlAuthorizationConfigurer<HttpSecurity>.ExpressionInterceptUrlRegistry registry = httpSecurity.authorizeRequests();
|
|
|
- permitAllUrl.getUrls().forEach(url -> registry.antMatchers(url).permitAll());
|
|
|
- registry.anyRequest().permitAll(); // 允许所有请求
|
|
|
-
|
|
|
- httpSecurity
|
|
|
- .csrf().disable() // 禁用CSRF
|
|
|
- .headers().cacheControl().disable().and()
|
|
|
- .exceptionHandling().authenticationEntryPoint(unauthorizedHandler).and()
|
|
|
- .sessionManagement().sessionCreationPolicy(SessionCreationPolicy.STATELESS).and()
|
|
|
- .headers().frameOptions().disable();
|
|
|
-
|
|
|
- httpSecurity.logout().logoutUrl("/logout").logoutSuccessHandler(logoutSuccessHandler);
|
|
|
- // 注释或移除JWT过滤器和CORS过滤器
|
|
|
- // httpSecurity.addFilterBefore(authenticationTokenFilter, UsernamePasswordAuthenticationFilter.class);
|
|
|
- // httpSecurity.addFilterBefore(corsFilter, JwtAuthenticationTokenFilter.class);
|
|
|
- // httpSecurity.addFilterBefore(corsFilter, LogoutFilter.class);
|
|
|
- return httpSecurity.build();
|
|
|
+ protected SecurityFilterChain filterChain(HttpSecurity httpSecurity) throws Exception
|
|
|
+ {
|
|
|
+ return httpSecurity
|
|
|
+ // CSRF禁用,因为不使用session
|
|
|
+ .csrf(csrf -> csrf.disable())
|
|
|
+ // 禁用HTTP响应标头
|
|
|
+ .headers((headersCustomizer) -> {
|
|
|
+ headersCustomizer.cacheControl(cache -> cache.disable()).frameOptions(options -> options.sameOrigin());
|
|
|
+ })
|
|
|
+ // 认证失败处理类
|
|
|
+ .exceptionHandling(exception -> exception.authenticationEntryPoint(unauthorizedHandler))
|
|
|
+ // 基于token,所以不需要session
|
|
|
+ .sessionManagement(session -> session.sessionCreationPolicy(SessionCreationPolicy.STATELESS))
|
|
|
+ // 注解标记允许匿名访问的url
|
|
|
+ .authorizeHttpRequests((requests) -> {
|
|
|
+ permitAllUrl.getUrls().forEach(url -> requests.antMatchers(url).permitAll());
|
|
|
+ // 对于登录login 注册register 验证码captchaImage 允许匿名访问
|
|
|
+ requests.antMatchers("/login", "/register", "/captchaImage").permitAll()
|
|
|
+ // 静态资源,可匿名访问
|
|
|
+ .antMatchers(HttpMethod.GET, "/", "/*.html", "/**/*.html", "/**/*.css", "/**/*.js", "/profile/**").permitAll()
|
|
|
+ .antMatchers("/swagger-ui.html", "/swagger-resources/**", "/webjars/**", "/*/api-docs", "/druid/**").permitAll()
|
|
|
+ .antMatchers("/sim/**").permitAll()
|
|
|
+ // 除上面外的所有请求全部需要鉴权认证
|
|
|
+ .anyRequest().authenticated();
|
|
|
+ })
|
|
|
+ // 添加Logout filter
|
|
|
+ .logout(logout -> logout.logoutUrl("/logout").logoutSuccessHandler(logoutSuccessHandler))
|
|
|
+ // 添加JWT filter
|
|
|
+ .addFilterBefore(authenticationTokenFilter, UsernamePasswordAuthenticationFilter.class)
|
|
|
+ // 添加CORS filter
|
|
|
+ .addFilterBefore(corsFilter, JwtAuthenticationTokenFilter.class)
|
|
|
+ .addFilterBefore(corsFilter, LogoutFilter.class)
|
|
|
+ .build();
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 强散列哈希加密实现
|
|
|
*/
|
|
|
@Bean
|
|
|
- public BCryptPasswordEncoder bCryptPasswordEncoder() {
|
|
|
+ public BCryptPasswordEncoder bCryptPasswordEncoder()
|
|
|
+ {
|
|
|
return new BCryptPasswordEncoder();
|
|
|
}
|
|
|
}
|