banner
Always thinking,there must be an echo

尘世如潮人如水,
初心不改任尘飞。

Scroll down
SpringBoot

SpringSecurity是安全框架,与shiro相似。其主要功能是:用户认证(Authentication)和用户授权(Authorization)。用户登录时完成登录认证,并存储登录认证信息;用户访问接口、方法时,权限认证根据登录认证信息,通过权限信息和授权策略完成授权。
本案例完成项目搭建,并作出相应测试

在SpringBoot项目中使用Redis作缓存,既可避免频繁读取后端数据库,又可优化读取时间
本案例使用工具:IDEA,Postman,Redis,Mysql
本案例GitHub地址:https://github.com/limenggen/springboot-redis-demo

在SpringBoot项目中引入Swagger,让接口数据可视化,尤其适用于Restful API
本案例使用工具:IDEA
本案例GitHub地址:https://github.com/limenggen/springboot-swagger-demo

1