SpringSecurity入门案例与基本原理

1、入门案例

1.1、创建SpringBoot项目

SpringSecurity入门案例与基本原理

1.2、勾选对应的maven依赖

SpringSecurity入门案例与基本原理
这里一些依赖可以没有,最主要是要有Web和Security两个依赖即可!


1.3、编写Controller路由
@Controller
public class RouterController {

    @RequestMapping(value = {"/index","/","/index.html"})
    @ResponseBody
    public String success(){
        return "Hello SpringSecurity";
    }
}

SpringSecurity入门案例与基本原理


1.4、启动项目
  • 启动项目之后会发现自动来到了登录页面,这个登录页面并不是我们写的,是由Security自带的并且现在说明Security已经开启了用户认证。

  • 可以在控制台拿到密码(随机),用户名为user;使用密码登录之后就能看到页面了!

SpringSecurity入门案例与基本原理



2、基本原理

2.1、Security装载过程
  • 根据SpringBoot自动装配原理可以得知,SpringBoot在启动时会自动加载spring-boot-autoconfigure包下的spring.factories中的配置,其中有做安全认证的security组件!

SpringSecurity入门案例与基本原理

  • 虽然自动装配了security的组件,但是并没有完全生效,还需要导入security的依赖,这时才会根据@Condition进行条件装配bean。

2.2、基本原理
  • SpringSecurity的本质是Interceptor拦截器 + Filter过滤器的执行链,而拦截器的本质是AOP。

  • 可以在security包中看到大量的拦截器类、过滤器类等等,它们分别负责不同的功能。

org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFil
ter
org.springframework.security.web.context.SecurityContextPersistenceFilter
org.springframework.security.web.header.HeaderWriterFilter
org.springframework.security.web.csrf.CsrfFilter
org.springframework.security.web.authentication.logout.LogoutFilter
org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter
org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter
org.springframework.security.web.authentication.ui.DefaultLogoutPageGeneratingFilter
org.springframework.security.web.savedrequest.RequestCacheAwareFilter
org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter
org.springframework.security.web.authentication.AnonymousAuthenticationFilter
org.springframework.security.web.session.SessionManagementFilter
org.springframework.security.web.access.ExceptionTranslationFilter
org.springframework.security.web.access.intercept.FilterSecurityInterceptor

2.3、UsernamePasswordAuthenticationFilter过滤器
  • 这是Security中的一个过滤器,用户对登录/login请求进行拦截验证的实现类。
@Override
public Authentication attemptAuthentication(HttpServletRequest request, HttpServletResponse response)
		throws AuthenticationException {
	if (this.postOnly && !request.getMethod().equals("POST")) {
		throw new AuthenticationServiceException("Authentication method not supported: " + request.getMethod());
	}
	String username = obtainUsername(request);
	username = (username != null) ? username : "";
	username = username.trim();
	String password = obtainPassword(request);
	password = (password != null) ? password : "";
	UsernamePasswordAuthenticationToken authRequest = new UsernamePasswordAuthenticationToken(username, password);
	// Allow subclasses to set the "details" property
	setDetails(request, authRequest);
	return this.getAuthenticationManager().authenticate(authRequest);
}
  • 其中核心的方法是authenticate()方法,在这里对用户提交的账号和密码进行验证。
上一篇:springboot整合springsecurity-初步入门


下一篇:SpringSecurity用户认证-自定义登录页面三