File tree Expand file tree Collapse file tree 6 files changed +49
-4
lines changed
spring-redisson-queue-starter Expand file tree Collapse file tree 6 files changed +49
-4
lines changed Original file line number Diff line number Diff line change 36
36
.vscode /
37
37
38
38
# ## Mac OS ###
39
- .DS_Store
39
+ .DS_Store! / .idea / sonarlint /
Original file line number Diff line number Diff line change 1
1
# java-plugins
2
2
3
- 分享一些自己在日常中封装的一些组件、spring-boot-starter、工具包等
3
+ 分享一些自己在日常中封装的一些组件、spring-boot-starter、工具包等
4
+
5
+ ## 快速开始
6
+
7
+ ### 目录结构
8
+
9
+ ``` lua
10
+ java - plugins
11
+ ├── java - plugins - pom -- 公共版本控制
12
+ ├── spring - boot - tools -- spring boot 常用的一些工具类
13
+ └── spring - redisson - queue - starter -- 基于redisson实现的队列组件
14
+ ```
15
+
16
+ ### 组件介绍
17
+
18
+ | 组件 | 使用介绍 |
19
+ | -------------------------------| ------------------------------------------------------------------------------------------------|
20
+ | java-plugins-pom | - |
21
+ | spring-boot-tools | - |
22
+ | spring-redisson-queue-starter | [ 基于Redisson实现的队列组件] ( https://www.mnjblog.cn/archives/ji-yu-redissonshi-xian-de-dui-lie-zu-jian ) |
Original file line number Diff line number Diff line change 30
30
<artifactId >redisson-spring-data-27</artifactId >
31
31
<version >${redisson.version} </version >
32
32
</dependency >
33
+ <dependency >
34
+ <groupId >cn.mnjblog</groupId >
35
+ <artifactId >spring-boot-tools</artifactId >
36
+ <version >${plugins.version} </version >
37
+ </dependency >
33
38
</dependencies >
34
39
</dependencyManagement >
35
40
</project >
Original file line number Diff line number Diff line change 13
13
<description >java-plugins 是在日常中封装的一些组件、spring-boot-starter、工具包等</description >
14
14
<url >https://github.com/githubwyj/java-plugins</url >
15
15
<modules >
16
- <module >spring-redisson-queue-starter</module >
17
16
<module >java-plugins-pom</module >
17
+ <module >spring-boot-tools</module >
18
+ <module >spring-redisson-queue-starter</module >
18
19
</modules >
19
20
20
21
<properties >
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5
+ <modelVersion >4.0.0</modelVersion >
6
+ <parent >
7
+ <groupId >cn.mnjblog</groupId >
8
+ <artifactId >java-plugins</artifactId >
9
+ <version >1.0.0-SNAPSHOT</version >
10
+ </parent >
11
+
12
+ <artifactId >spring-boot-tools</artifactId >
13
+ <description >spring boot 常用的一些工具类</description >
14
+ <properties >
15
+ <maven .compiler.source>8</maven .compiler.source>
16
+ <maven .compiler.target>8</maven .compiler.target>
17
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
18
+ </properties >
19
+
20
+ </project >
Original file line number Diff line number Diff line change 10
10
</parent >
11
11
12
12
<artifactId >spring-redisson-queue-starter</artifactId >
13
-
13
+ < description >基于redisson实现的(延时)队列组件</ description >
14
14
<properties >
15
15
<maven .compiler.source>8</maven .compiler.source>
16
16
<maven .compiler.target>8</maven .compiler.target>
You can’t perform that action at this time.
0 commit comments