# springboot-admin-template **Repository Path**: xiaohaoo/springboot-admin-template ## Basic Information - **Project Name**: springboot-admin-template - **Description**: 基于SpingBoot Restful风格后台模版项目 - **Primary Language**: Java - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 4 - **Forks**: 1 - **Created**: 2019-04-29 - **Last Updated**: 2023-07-15 ## Categories & Tags **Categories**: backend **Tags**: None ## README # 基于SpingBoot Restful风格后台模版项目 ![](https://img.shields.io/apm/l/vim-mode) ## 主要内容: ### 数据库 数据库自选 ### 技术架构 SpringMVC、Spring Data JPA、JWT、Spring Security ### 用户鉴权 主要使用Spring Security和JWT做安全控制。 ### 登录地址 /login (POST) 返回头部信息中有token,每次请求需要带上token验证。 token格式:Bearer token 密码采用HASH算法加盐加密的方式 ### 登录后: 每次请求头部带上token,token格式:Authorization:Bearer token ### 注册注意 用户的密码需加密,采用Spring Security自带的BCryptPasswordEncoder加密即可。