Skip to content

Commit e79a811

Browse files
chengxy-ndszhifu.xin
authored andcommitted
format project tree
1 parent d1fa2ee commit e79a811

File tree

487 files changed

+1851
-3596
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

487 files changed

+1851
-3596
lines changed

.gitignore

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
HELP.md
22
target/
33
!.mvn/wrapper/maven-wrapper.jar
4-
!**/src/main/**
5-
!**/src/test/**
4+
!**/src/main/**/target/
5+
!**/src/test/**/target/
66

77
### STS ###
88
.apt_generated
@@ -14,7 +14,7 @@ target/
1414
.sts4-cache
1515

1616
### IntelliJ IDEA ###
17-
*.idea
17+
.idea
1818
*.iws
1919
*.iml
2020
*.ipr
@@ -26,6 +26,13 @@ target/
2626
/nbdist/
2727
/.nb-gradle/
2828
build/
29+
!**/src/main/**/build/
30+
!**/src/test/**/build/
2931

3032
### VS Code ###
3133
.vscode/
34+
!/mvnw
35+
!/mvnw.cmd
36+
!/mvnw
37+
38+
!/mvnw.cmd

README.md

Lines changed: 5 additions & 0 deletions

pom.xml

Lines changed: 27 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.0.5.RELEASE</version>
8+
<version>2.7.6</version>
99
</parent>
1010
<groupId>com.notebook</groupId>
1111
<artifactId>Springboot-Notebook</artifactId>
@@ -14,83 +14,66 @@
1414
<packaging>pom</packaging>
1515

1616
<modules>
17-
<module>springboot-sharding-jdbc</module>
18-
<module>springboot-work-flowable</module>
19-
<module>springboot-redisson-lock</module>
20-
<module>springboot-rabbitmq-confirm</module>
21-
<module>springboot-mqtt-messagepush</module>
22-
<module>springboot-aop-redis-lua</module>
23-
<module>springboot-aop-unifiedlog</module>
24-
<module>springboot-database-doc</module>
25-
<module>springboot-delayqueue</module>
26-
<module>springboot-douyin-watermark</module>
27-
<module>springboot-global-formatting</module>
28-
<module>springboot-sharding-jdbc</module>
29-
<module>springboot-erupt</module>
30-
<module>springboot-jasypt</module>
31-
<module>springboot-magic-api</module>
32-
<module>springboot-detect-faces</module>
33-
<module>springboot-shardingsphere</module>
17+
<module>springboot-101</module>
3418
</modules>
3519

3620
<properties>
3721
<java.version>1.8</java.version>
3822
</properties>
3923

4024
<dependencies>
41-
4225
<dependency>
4326
<groupId>org.springframework.boot</groupId>
44-
<artifactId>spring-boot-starter-thymeleaf</artifactId>
27+
<artifactId>spring-boot-starter</artifactId>
4528
</dependency>
4629

4730
<dependency>
48-
<groupId>org.springframework.boot</groupId>
49-
<artifactId>spring-boot-starter</artifactId>
31+
<groupId>org.apache.commons</groupId>
32+
<artifactId>commons-lang3</artifactId>
33+
<version>3.7</version>
5034
</dependency>
5135

36+
<!-- springboot核心包 -->
5237
<dependency>
5338
<groupId>org.springframework.boot</groupId>
5439
<artifactId>spring-boot-starter-web</artifactId>
5540
</dependency>
5641

42+
<!-- mysql驱动包 -->
5743
<dependency>
58-
<groupId>org.springframework.boot</groupId>
59-
<artifactId>spring-boot-starter-test</artifactId>
60-
<scope>test</scope>
61-
<exclusions>
62-
<exclusion>
63-
<groupId>org.junit.vintage</groupId>
64-
<artifactId>junit-vintage-engine</artifactId>
65-
</exclusion>
66-
</exclusions>
67-
</dependency>
68-
<dependency>
69-
<groupId>org.apache.commons</groupId>
70-
<artifactId>commons-lang3</artifactId>
71-
<version>3.7</version>
44+
<groupId>mysql</groupId>
45+
<artifactId>mysql-connector-java</artifactId>
46+
<version>8.0.32</version>
7247
</dependency>
48+
49+
<!-- lombok工具包 -->
7350
<dependency>
7451
<groupId>org.projectlombok</groupId>
7552
<artifactId>lombok</artifactId>
76-
<version>1.16.18</version>
77-
<scope>provided</scope>
53+
<optional>true</optional>
7854
</dependency>
55+
56+
<!-- 单元测试 -->
57+
<dependency>
58+
<groupId>org.springframework.boot</groupId>
59+
<artifactId>spring-boot-starter-test</artifactId>
60+
<scope>test</scope>
61+
</dependency>
62+
7963
<dependency>
8064
<groupId>com.alibaba</groupId>
8165
<artifactId>fastjson</artifactId>
8266
<version>1.2.83</version>
8367
</dependency>
84-
<dependency>
85-
<groupId>mysql</groupId>
86-
<artifactId>mysql-connector-java</artifactId>
87-
<scope>runtime</scope>
88-
</dependency>
68+
69+
<!-- thymeleaf 页面模版 -->
8970
<dependency>
9071
<groupId>org.springframework.boot</groupId>
91-
<artifactId>spring-boot-starter-amqp</artifactId>
72+
<artifactId>spring-boot-starter-thymeleaf</artifactId>
9273
</dependency>
74+
9375
</dependencies>
76+
9477
<build>
9578
<plugins>
9679
<plugin>
@@ -99,5 +82,4 @@
9982
</plugin>
10083
</plugins>
10184
</build>
102-
10385
</project>

shardingsphere101/.gitignore

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
HELP.md
2+
target/
3+
!.mvn/wrapper/maven-wrapper.jar
4+
!**/src/main/**/target/
5+
!**/src/test/**/target/
6+
7+
### STS ###
8+
.apt_generated
9+
.classpath
10+
.factorypath
11+
.project
12+
.settings
13+
.springBeans
14+
.sts4-cache
15+
16+
### IntelliJ IDEA ###
17+
.idea
18+
*.iws
19+
*.iml
20+
*.ipr
21+
22+
### NetBeans ###
23+
/nbproject/private/
24+
/nbbuild/
25+
/dist/
26+
/nbdist/
27+
/.nb-gradle/
28+
build/
29+
!**/src/main/**/build/
30+
!**/src/test/**/build/
31+
32+
### VS Code ###
33+
.vscode/
34+
!/.idea/
35+
!/.idea/
36+
!/.idea/

shardingsphere101/README.md

Lines changed: 5 additions & 0 deletions

springboot-douyin-watermark/pom.xml renamed to shardingsphere101/pom.xml

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,15 @@
77
<artifactId>Springboot-Notebook</artifactId>
88
<version>0.0.1-SNAPSHOT</version>
99
</parent>
10-
<artifactId>springboot-douyin-watermark</artifactId>
10+
<artifactId>shardingsphere101</artifactId>
1111
<version>0.0.1-SNAPSHOT</version>
12-
<name>springboot-douyin-watermark</name>
12+
<name>shardingsphere101</name>
13+
14+
<modules>
15+
<module>springboot-sharding-jdbc</module>
16+
</modules>
1317

1418
<dependencies>
1519

1620
</dependencies>
17-
18-
<build>
19-
<plugins>
20-
<plugin>
21-
<groupId>org.springframework.boot</groupId>
22-
<artifactId>spring-boot-maven-plugin</artifactId>
23-
</plugin>
24-
</plugins>
25-
</build>
26-
2721
</project>

springboot-sharding-jdbc/pom.xml renamed to shardingsphere101/springboot-sharding-jdbc/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55
<parent>
6-
<groupId>com.notebook</groupId>
7-
<artifactId>Springboot-Notebook</artifactId>
6+
<groupId>com.shardingsphere101</groupId>
7+
<artifactId>shardingsphere101</artifactId>
88
<version>0.0.1-SNAPSHOT</version>
99
</parent>
1010
<artifactId>springboot-sharding-jdbc</artifactId>
@@ -82,15 +82,15 @@
8282
<artifactId>mybatis-generator-maven-plugin</artifactId>
8383
<version>1.3.7</version>
8484
<configuration>
85-
<configurationFile>${basedir}/src/main/resources/generator/generatorConfig.xml</configurationFile>
85+
<configurationFile>src/main/resources/generator/generatorConfig.xml</configurationFile>
8686
<overwrite>true</overwrite>
8787
<verbose>true</verbose>
8888
</configuration>
8989
<dependencies>
9090
<dependency>
9191
<groupId>mysql</groupId>
9292
<artifactId>mysql-connector-java</artifactId>
93-
<version>8.0.28</version>
93+
<version>8.0.32</version>
9494
</dependency>
9595
</dependencies>
9696
</plugin>

0 commit comments

Comments
 (0)