二十、Spring Boot 安全管理(Spring Security)
一、介绍
Spring Security是Spring 官方提供的一个高度自定义的安全框架,是一种基于 Spring AOP 和 Servlet 过滤器的安全框架。 提供了声明式安全访问控制功能,减少了为系统安全而编写大量重复代码的工作。主要包含“认证”和“授权”(或者访问控制)两个核心功能。
官方文档
二、简单使用
1.创建Spring Boot项目
参考:Spring Boot项目创建(IDEA)
2.添加依赖
修改pox.xml文件。添加spring security相关依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
3.启动项目测试
注:
- 默认登录账号为user,登录密码会打印在控制台;
- 默认账号信息可以通过项目配置文件(application.properties)修改:
spring.security.user.name=user
spring.security.user.password=password
三、自定义配置
1、用户信息实体类
String getUsername();
String getPassword();
Collection<? extends GrantedAuthority> getAuthorities();
boolean isAccountNonExpired();
boolean isAccountNonLocked();
boolean isCredentialsNonExpired();
boolean isEnabled();
注:在进行账号验证时只有 isAccountNonExpired()、isAccountNonLocked()、isCredentialsNonExpired()、isEnabled() 这四项都为true时才能通过验证(没有这几个属性可以都设置默认返回true)。
2、创建配置文件
- 新建类继承抽象类
WebSecurityConfigurerAdapter 并添加注解@Configuration ; - 重写
configure 方法,编写自定义登录信息认证逻辑。
示列代码:
package com.ikaros.config;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.builders.WebSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
import org.springframework.security.crypto.password.PasswordEncoder;
import java.io.PrintWriter;
@Configuration
public class SecurityConfig extends WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
http.formLogin()
.loginProcessingUrl("/login")
.successHandler(
(httpServletRequest, httpServletResponse, authentication) -> {
httpServletResponse.setContentType("application/json;charset=utf-8");
PrintWriter out = httpServletResponse.getWriter();
out.write("{\"status\":\"success\",\"msg\":\"登录成功\"}");
out.flush();
out.close();
})
.failureHandler(
(httpServletRequest, httpServletResponse, e) -> {
httpServletResponse.setContentType("application/json;charset=utf-8");
PrintWriter out = httpServletResponse.getWriter();
out.write("{\"status\":\"error\",\"msg\":\"登录失败,"+ e.getMessage()+"\"}");
out.flush();
out.close();
});
http.authorizeRequests()
.anyRequest().authenticated();
http.csrf().disable();
}
@Override
public void configure(WebSecurity web) {
web.ignoring().antMatchers(
"/swagger**/**",
"/webjars/**",
"/v3/**",
"/doc.html");
}
@Bean
public PasswordEncoder passwordEncoder(){
return new BCryptPasswordEncoder();
}
}
四、配置详解
1.configure方法
protected void configure(AuthenticationManagerBuilder auth) throws Exception {}
public void configure(WebSecurity web) throws Exception {}
protected void configure(HttpSecurity httpSecurity) throws Exception {}
AuthenticationManagerBuilder :用于配置全局认证相关的信息,就是UserDetailsService和AuthenticationProviderWebSecurity :用于全局请求忽略规则配置,比如一些静态文件,注册登录页面的放行。HttpSecurity 用于具体的权限控制规则配置,我们这里只需要重写这个方法就可以了
2.HttpSecurity 常用方法
方法 | 说明 |
---|
formLogin() | 开启表单的身份验证 | loginPage() | 指定登录页面 | successForwardUrl() | 指定登录成功之后跳转的页面 | successHandler() | 登录成功后的擦操作逻辑 | failureForwardUrl() | 指定登录失败之后跳转的页面 | failureHandler() | 登录失败后的操作逻辑 | authorizeRequests() | 开启使用HttpServletRequest请求的访问限制 | oauth2Login() | 开启oauth2 验证 | rememberMe() | 开启记住我的验证(使用cookie) | addFilter() | 添加自定义过滤器 | csrf() | 开启csrf支持 |
登录成功/失败 后的操作逻辑
.successHandler(
(httpServletRequest, httpServletResponse, authentication) -> {
httpServletResponse.sendRedirect("/index")
})
.failureHandler(
(httpServletRequest, httpServletResponse, authentication) -> {
httpServletResponse.sendRedirect("/failure")
})
- 一些认证方法
|