Skip to content

Commit 07ccb16

Browse files
committed
项目初始化
0 parents  commit 07ccb16

File tree

63 files changed

+1367
-0
lines changed

Some content is hidden

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

63 files changed

+1367
-0
lines changed

.gitignore

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Compiled class file
2+
*.class
3+
4+
# Eclipse
5+
.project
6+
.classpath
7+
.settings/
8+
9+
# Intellij
10+
*.ipr
11+
*.iml
12+
*.iws
13+
.idea/
14+
15+
# Maven
16+
target/
17+
18+
# Gradle
19+
build
20+
.gradle
21+
22+
# Log file
23+
*.log
24+
log/
25+
26+
# out
27+
**/out/
28+
29+
# Mac
30+
.DS_Store
31+
32+
# others
33+
*.jar
34+
*.war
35+
*.zip
36+
*.tar
37+
*.tar.gz
38+
*.pid
39+
*.orig
40+
temp/

pom.xml

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<parent>
5+
<artifactId>saltyfish-framework</artifactId>
6+
<groupId>com.saltyfish</groupId>
7+
<version>1.0.0</version>
8+
</parent>
9+
<modelVersion>4.0.0</modelVersion>
10+
<groupId>com.saltyfish</groupId>
11+
<artifactId>saltyfish-boot-admin</artifactId>
12+
<version>1.0.0</version>
13+
<packaging>pom</packaging>
14+
<modules>
15+
<module>saltyfish-boot-admin-server</module>
16+
<module>saltyfish-boot-admin-client</module>
17+
<module>saltyfish-boot-admin-adapter</module>
18+
<module>saltyfish-boot-admin-app</module>
19+
<module>saltyfish-boot-admin-infrastructure</module>
20+
<module>saltyfish-boot-admin-domain</module>
21+
</modules>
22+
<build>
23+
<finalName>${project.artifactId}</finalName>
24+
<extensions>
25+
<extension>
26+
<groupId>org.apache.maven.archetype</groupId>
27+
<artifactId>archetype-packaging</artifactId>
28+
<version>3.1.1</version>
29+
</extension>
30+
</extensions>
31+
<pluginManagement>
32+
<plugins>
33+
<plugin>
34+
<groupId>org.apache.maven.plugins</groupId>
35+
<artifactId>maven-archetype-plugin</artifactId>
36+
<version>3.1.1</version>
37+
</plugin>
38+
<plugin>
39+
<groupId>org.apache.maven.plugins</groupId>
40+
<artifactId>maven-compiler-plugin</artifactId>
41+
<version>3.8.0</version>
42+
<configuration>
43+
<source>1.8</source>
44+
<target>1.8</target>
45+
<annotationProcessorPaths>
46+
<!-- Lombok 在编译时会通过这个插件生成代码 -->
47+
<path>
48+
<groupId>org.projectlombok</groupId>
49+
<artifactId>lombok</artifactId>
50+
<version>${lombok.version}</version>
51+
</path>
52+
<!-- MapStruct 在编译时会通过这个插件生成代码 -->
53+
<path>
54+
<groupId>org.mapstruct</groupId>
55+
<artifactId>mapstruct-processor</artifactId>
56+
<version>${mapstruct.version}</version>
57+
</path>
58+
</annotationProcessorPaths>
59+
</configuration>
60+
</plugin>
61+
<plugin>
62+
<groupId>org.apache.maven.plugins</groupId>
63+
<artifactId>maven-resources-plugin</artifactId>
64+
<configuration>
65+
<encoding>UTF-8</encoding>
66+
</configuration>
67+
</plugin>
68+
<plugin>
69+
<artifactId>maven-clean-plugin</artifactId>
70+
<version>3.1.0</version>
71+
</plugin>
72+
<plugin>
73+
<artifactId>maven-resources-plugin</artifactId>
74+
<version>3.0.2</version>
75+
</plugin>
76+
<plugin>
77+
<artifactId>maven-surefire-plugin</artifactId>
78+
<version>2.22.1</version>
79+
</plugin>
80+
<plugin>
81+
<artifactId>maven-jar-plugin</artifactId>
82+
<version>3.0.2</version>
83+
</plugin>
84+
<plugin>
85+
<artifactId>maven-install-plugin</artifactId>
86+
<version>2.5.2</version>
87+
</plugin>
88+
<plugin>
89+
<artifactId>maven-deploy-plugin</artifactId>
90+
<version>2.8.2</version>
91+
</plugin>
92+
<plugin>
93+
<artifactId>maven-site-plugin</artifactId>
94+
<version>3.7.1</version>
95+
</plugin>
96+
<plugin>
97+
<artifactId>maven-project-info-reports-plugin</artifactId>
98+
<version>3.0.0</version>
99+
</plugin>
100+
</plugins>
101+
</pluginManagement>
102+
</build>
103+
</project>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
####***Controller负责对数据做前置校验,具体业务逻辑则交给应用服务或领域服务实现,可直接调用应用服务方法或领域方法***

saltyfish-boot-admin-adapter/pom.xml

Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
3+
<parent>
4+
<artifactId>saltyfish-boot-admin</artifactId>
5+
<groupId>com.saltyfish</groupId>
6+
<version>1.0.0</version>
7+
</parent>
8+
<modelVersion>4.0.0</modelVersion>
9+
<groupId>com.saltyfish</groupId>
10+
<artifactId>saltyfish-boot-admin-adapter</artifactId>
11+
<version>1.0.0</version>
12+
<packaging>jar</packaging>
13+
<name>saltyfish-boot-admin-adapter</name>
14+
15+
<dependencies>
16+
<dependency>
17+
<groupId>com.saltyfish</groupId>
18+
<artifactId>saltyfish-boot-admin-app</artifactId>
19+
<version>1.0.0</version>
20+
</dependency>
21+
</dependencies>
22+
23+
<build>
24+
<finalName>${project.artifactId}</finalName>
25+
<pluginManagement>
26+
<plugins>
27+
<plugin>
28+
<groupId>org.apache.maven.plugins</groupId>
29+
<artifactId>maven-archetype-plugin</artifactId>
30+
<version>3.1.1</version>
31+
</plugin>
32+
<plugin>
33+
<groupId>org.apache.maven.plugins</groupId>
34+
<artifactId>maven-compiler-plugin</artifactId>
35+
<version>3.8.0</version>
36+
<configuration>
37+
<source>1.8</source>
38+
<target>1.8</target>
39+
<annotationProcessorPaths>
40+
<!-- Lombok 在编译时会通过这个插件生成代码 -->
41+
<path>
42+
<groupId>org.projectlombok</groupId>
43+
<artifactId>lombok</artifactId>
44+
<version>${lombok.version}</version>
45+
</path>
46+
<!-- MapStruct 在编译时会通过这个插件生成代码 -->
47+
<path>
48+
<groupId>org.mapstruct</groupId>
49+
<artifactId>mapstruct-processor</artifactId>
50+
<version>${mapstruct.version}</version>
51+
</path>
52+
</annotationProcessorPaths>
53+
</configuration>
54+
</plugin>
55+
<plugin>
56+
<groupId>org.apache.maven.plugins</groupId>
57+
<artifactId>maven-resources-plugin</artifactId>
58+
<version>3.0.2</version>
59+
<configuration>
60+
<encoding>UTF-8</encoding>
61+
</configuration>
62+
</plugin>
63+
<plugin>
64+
<groupId>org.apache.maven.plugins</groupId>
65+
<artifactId>maven-clean-plugin</artifactId>
66+
<version>3.1.0</version>
67+
</plugin>
68+
<plugin>
69+
<groupId>org.apache.maven.plugins</groupId>
70+
<artifactId>maven-surefire-plugin</artifactId>
71+
<version>2.22.1</version>
72+
</plugin>
73+
<plugin>
74+
<groupId>org.apache.maven.plugins</groupId>
75+
<artifactId>maven-jar-plugin</artifactId>
76+
<version>3.0.2</version>
77+
</plugin>
78+
<plugin>
79+
<groupId>org.apache.maven.plugins</groupId>
80+
<artifactId>maven-install-plugin</artifactId>
81+
<version>2.5.2</version>
82+
</plugin>
83+
<plugin>
84+
<groupId>org.apache.maven.plugins</groupId>
85+
<artifactId>maven-deploy-plugin</artifactId>
86+
<version>2.8.2</version>
87+
</plugin>
88+
<plugin>
89+
<groupId>org.apache.maven.plugins</groupId>
90+
<artifactId>maven-site-plugin</artifactId>
91+
<version>3.7.1</version>
92+
</plugin>
93+
<plugin>
94+
<groupId>org.apache.maven.plugins</groupId>
95+
<artifactId>maven-project-info-reports-plugin</artifactId>
96+
<version>3.0.0</version>
97+
</plugin>
98+
</plugins>
99+
</pluginManagement>
100+
</build>
101+
</project>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#### ***模型转换(app层DTO转换成adapter层VO,adapter层VO转换成app层DTO)***
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#### ***对外Controller***
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#### ***参数(RequestVO,ResponseVO)***
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#### ***模型转换(app层DTO转换成adapter层VO,adapter层VO转换成app层DTO)***
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#### ***Web端Controller***
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#### ***参数(RequestVO,ResponseVO)***

0 commit comments

Comments
 (0)