# springboot_security **Repository Path**: sun-liangzhao/springboot_security ## Basic Information - **Project Name**: springboot_security - **Description**: springboot security的学习 - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-05-28 - **Last Updated**: 2022-09-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 工程简介 security的学习 ###1.引入security的依赖 ~~~xml org.springframework.boot spring-boot-starter-security ~~~ >引入security后访问controller会自动弹出一个登录页面 ![img.png](img.png) > 用户名是user,密码是控制台输出的一串字符,登录成功即可访问controller ![img_1.png](img_1.png) ![img_2.png](img_2.png) >那么怎么看SpringSecurity的源码呢 ![img_3.png](img_3.png) ![img_4.png](img_4.png) > 认证流程 ![img_5.png](img_5.png) > 实现思路 ![img_6.png](img_6.png) ![img_7.png](img_7.png) ![img_8.png](img_8.png) ![img_9.png](img_9.png)