# SpringSecurity **Repository Path**: xujiabing123/SpringSecurity ## Basic Information - **Project Name**: SpringSecurity - **Description**: 此仓库保存学习SpringSecurity源码 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-09-16 - **Last Updated**: 2025-01-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # SpringSecurity #### 介绍 此仓库保存学习SpringSecurity源码,b站地址为: 【SpringSecurity框架教程-Spring Security+JWT实现项目级前端分离认证授权-挑战黑马&尚硅谷】 https://www.bilibili.com/video/BV1mm4y1X7Hc/?share_source=copy_web&vd_source=c1c3e286165b605f1639282dcdee0212 #### 软件架构 | SanGeng_Security_Project | 后端工程 | | ------------------------ | -------- | | sg_security_demo | 前端工程 | #### 后端工程目录 ├─SanGengSecurityQuickStart [快速启动/入门工程] │ ├─src │ │ ├─main │ │ │ └─java │ │ │ └─com │ │ │ └─sangeng │ │ │ ├─config [SpringSecurity配置] │ │ │ ├─controller [接口] │ │ │ └─handler [认证成功/失败,注销成功处理器] └─SanGengTokenDemo ├─src │ ├─main │ │ ├─java │ │ │ └─com │ │ │ └─sangeng │ │ │ ├─config [SpringSecurity配置] │ │ │ ├─controller [接口] │ │ │ ├─domain [实体类] │ │ │ ├─entity [表实体] │ │ │ ├─exception [异常相关] │ │ │ │ └─handler [自定义异常处理机制] │ │ │ ├─expression [权限校验] │ │ │ ├─filter [过滤器] │ │ │ ├─mapper [mapper接口] │ │ │ ├─service [业务层] │ │ │ │ └─impl │ │ │ └─utils [工具类] │ │ └─resources │ │ └─mapper