竹笋

首页 » 问答 » 环境 » 一SpringSecurity学习实践
TUhjnbcbe - 2024/2/17 17:59:00
SpringSecurity学习实践

介绍

SpringSecurity是Spring全家桶中的安全框架,为了解决“用户身份认证”、“资源访问鉴权”这两个核心问题,SpringSecurity提供了一整套安全框架,基于安全框架,用户可以自定义身份认证、资源鉴权功能,例如:手机验证码登录、基于RDBC鉴权等,本文章主要介绍如何创建基于SpringSecurity项目。

项目创建

项目源码已上传到Gitee:地址。

项目依赖

基于SpringBoot创建SpringSecurity可以实现开箱即用功能,引入依赖项:

-SpringBoot依赖

parentgroupIdorg.springframework.boot/groupIdartifactIdspring-boot-starter-parent/artifactIdversion2.7.0/versionrelativePath/!--lookupparentfromrepository--/parent

-SpringMVC依赖(搭建基于

1
查看完整版本: 一SpringSecurity学习实践