Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Develop #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ build/
.vscode/

### Mac OS ###
.DS_Store
.DS_Store!/.idea/sonarlint/
21 changes: 20 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
# java-plugins

分享一些自己在日常中封装的一些组件、spring-boot-starter、工具包等
分享一些自己在日常中封装的一些组件、spring-boot-starter、工具包等

## 快速开始

### 目录结构

```lua
java-plugins
├── java-plugins-pom -- 公共版本控制
├── spring-boot-tools -- spring boot 常用的一些工具类
└── spring-redisson-queue-starter -- 基于redisson实现的队列组件
```

### 组件介绍

| 组件 | 使用介绍 |
|-------------------------------|------------------------------------------------------------------------------------------------|
| java-plugins-pom | - |
| spring-boot-tools | - |
| spring-redisson-queue-starter | [基于Redisson实现的队列组件](https://www.mnjblog.cn/archives/ji-yu-redissonshi-xian-de-dui-lie-zu-jian) |
5 changes: 5 additions & 0 deletions java-plugins-pom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@
<artifactId>redisson-spring-data-27</artifactId>
<version>${redisson.version}</version>
</dependency>
<dependency>
<groupId>cn.mnjblog</groupId>
<artifactId>spring-boot-tools</artifactId>
<version>${plugins.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@
<description>java-plugins 是在日常中封装的一些组件、spring-boot-starter、工具包等</description>
<url>https://github.com/githubwyj/java-plugins</url>
<modules>
<module>spring-redisson-queue-starter</module>
<module>java-plugins-pom</module>
<module>spring-boot-tools</module>
<module>spring-redisson-queue-starter</module>
</modules>

<properties>
Expand Down
20 changes: 20 additions & 0 deletions spring-boot-tools/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>cn.mnjblog</groupId>
<artifactId>java-plugins</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>

<artifactId>spring-boot-tools</artifactId>
<description>spring boot 常用的一些工具类</description>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

</project>
2 changes: 1 addition & 1 deletion spring-redisson-queue-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</parent>

<artifactId>spring-redisson-queue-starter</artifactId>

<description>基于redisson实现的(延时)队列组件</description>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
Expand Down