针对SpringBoot 封装的一系列的快捷包 提供公共的Controller、自动化拦截器、启动加载资源接口、线程池管理
在SpringBoot项目的pom.xml 添加如下代码
<dependencies>
<groupId>cn.jiangzeyin.fast-boot</groupId>
<artifactId>common-parent</artifactId>
<version>VERSION</version>
</dependencies>
注:VERSION 请更换为公共maven库最新的版本号
此模块主要封装Boot 程序的常用工具和内存缓存
如:公共的Controller、自动化拦截器、启动加载资源接口、线程池管理
maven坐标
<dependency>
<groupId>cn.jiangzeyin.fast-boot</groupId>
<artifactId>common-boot</artifactId>
</dependency>
地址:https://gitee.com/keepbx/common-parent/tree/master/common-boot
此模块主要是封装了SpringBoot 里面包含Redis 的操作支持动态指定使用数据库编号
maven坐标
<dependency>
<groupId>cn.jiangzeyin.fast-boot</groupId>
<artifactId>common-redis</artifactId>
</dependency>
特点:支持动态指定Redis 索引库编号
地址:https://gitee.com/keepbx/common-parent/tree/master/common-redis