|
|
@@ -16,13 +16,13 @@
|
|
16
|
16
|
</description>
|
|
17
|
17
|
|
|
18
|
18
|
<dependencies>
|
|
19
|
|
-
|
|
|
19
|
+
|
|
20
|
20
|
<!-- SpringCloud Openfeign -->
|
|
21
|
21
|
<dependency>
|
|
22
|
22
|
<groupId>org.springframework.cloud</groupId>
|
|
23
|
23
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
|
24
|
24
|
</dependency>
|
|
25
|
|
-
|
|
|
25
|
+
|
|
26
|
26
|
<!-- Spring Context Support -->
|
|
27
|
27
|
<dependency>
|
|
28
|
28
|
<groupId>org.springframework</groupId>
|
|
|
@@ -34,73 +34,73 @@
|
|
34
|
34
|
<groupId>org.springframework</groupId>
|
|
35
|
35
|
<artifactId>spring-web</artifactId>
|
|
36
|
36
|
</dependency>
|
|
37
|
|
-
|
|
|
37
|
+
|
|
38
|
38
|
<!-- Apache Commons Pool2 -->
|
|
39
|
39
|
<dependency>
|
|
40
|
40
|
<groupId>org.apache.commons</groupId>
|
|
41
|
41
|
<artifactId>commons-pool2</artifactId>
|
|
42
|
42
|
</dependency>
|
|
43
|
|
-
|
|
|
43
|
+
|
|
44
|
44
|
<!-- Pagehelper -->
|
|
45
|
45
|
<dependency>
|
|
46
|
46
|
<groupId>com.github.pagehelper</groupId>
|
|
47
|
47
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
48
|
48
|
</dependency>
|
|
49
|
|
-
|
|
50
|
|
- <!-- Java Validation -->
|
|
|
49
|
+
|
|
|
50
|
+ <!-- Hibernate Validator -->
|
|
51
|
51
|
<dependency>
|
|
52
|
|
- <groupId>javax.validation</groupId>
|
|
53
|
|
- <artifactId>validation-api</artifactId>
|
|
|
52
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
53
|
+ <artifactId>spring-boot-starter-validation</artifactId>
|
|
54
|
54
|
</dependency>
|
|
55
|
|
-
|
|
|
55
|
+
|
|
56
|
56
|
<!-- Jackson -->
|
|
57
|
57
|
<dependency>
|
|
58
|
58
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
59
|
59
|
<artifactId>jackson-databind</artifactId>
|
|
60
|
60
|
</dependency>
|
|
61
|
|
-
|
|
|
61
|
+
|
|
62
|
62
|
<!-- Alibaba Fastjson -->
|
|
63
|
63
|
<dependency>
|
|
64
|
64
|
<groupId>com.alibaba</groupId>
|
|
65
|
65
|
<artifactId>fastjson</artifactId>
|
|
66
|
66
|
</dependency>
|
|
67
|
|
-
|
|
|
67
|
+
|
|
68
|
68
|
<!-- Apache Lang3 -->
|
|
69
|
69
|
<dependency>
|
|
70
|
70
|
<groupId>org.apache.commons</groupId>
|
|
71
|
71
|
<artifactId>commons-lang3</artifactId>
|
|
72
|
72
|
</dependency>
|
|
73
|
|
-
|
|
|
73
|
+
|
|
74
|
74
|
<!-- Commons Io -->
|
|
75
|
75
|
<dependency>
|
|
76
|
76
|
<groupId>commons-io</groupId>
|
|
77
|
77
|
<artifactId>commons-io</artifactId>
|
|
78
|
78
|
</dependency>
|
|
79
|
|
-
|
|
|
79
|
+
|
|
80
|
80
|
<!-- Commons Fileupload -->
|
|
81
|
81
|
<dependency>
|
|
82
|
82
|
<groupId>commons-fileupload</groupId>
|
|
83
|
83
|
<artifactId>commons-fileupload</artifactId>
|
|
84
|
84
|
</dependency>
|
|
85
|
|
-
|
|
|
85
|
+
|
|
86
|
86
|
<!-- excel工具 -->
|
|
87
|
87
|
<dependency>
|
|
88
|
88
|
<groupId>org.apache.poi</groupId>
|
|
89
|
89
|
<artifactId>poi-ooxml</artifactId>
|
|
90
|
90
|
</dependency>
|
|
91
|
|
-
|
|
|
91
|
+
|
|
92
|
92
|
<!-- Java Servlet -->
|
|
93
|
93
|
<dependency>
|
|
94
|
94
|
<groupId>javax.servlet</groupId>
|
|
95
|
95
|
<artifactId>javax.servlet-api</artifactId>
|
|
96
|
96
|
</dependency>
|
|
97
|
|
-
|
|
|
97
|
+
|
|
98
|
98
|
<!-- Swagger -->
|
|
99
|
99
|
<dependency>
|
|
100
|
100
|
<groupId>io.swagger</groupId>
|
|
101
|
101
|
<artifactId>swagger-annotations</artifactId>
|
|
102
|
102
|
</dependency>
|
|
103
|
|
-
|
|
|
103
|
+
|
|
104
|
104
|
</dependencies>
|
|
105
|
|
-
|
|
|
105
|
+
|
|
106
|
106
|
</project>
|