SpringBoot
ROAOR1
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
SpringBoot常用的扩展点及使用场景
ApplicationContextAware@Componentpublic class ApplicationContextHolder implements ApplicationContextAware { private static ApplicationContext context; @Override public void setApplicationContext(@NonNull ApplicationContext applicationContext原创 2024-11-11 16:37:42 · 355 阅读 · 0 评论 -
springboot整合shiro
springboot整合shiro进行权限管理源码:https://github.com/ROAOR1/shiro数据库设计为了方便,只创建了三张表,用户表,权限表,用户权限表CREATE TABLE `user` ( `id` int(11) NOT NULL, `username` varchar(50) NOT NULL, `password` varchar(255) ...原创 2019-11-20 11:38:41 · 306 阅读 · 0 评论 -
spring boot整合mybatis plus
简介MyBatis-Plus是一个 MyBatis 的增强工具,在 MyBatis 的基础上只做增强不做改变,为简化开发、提高效率而生。本文环境jdk1.8spring boot 2.1.8.RELEASEmybatis-plus 3.2.0mysql 5.1.47MyBatis-Plus的逆向工程一、添加依赖 <dependency> ...原创 2019-10-01 17:35:42 · 696 阅读 · 0 评论
分享