|
@@ -36,6 +36,17 @@
|
|
<artifactId>spring-cloud-starter-gateway</artifactId>
|
|
<artifactId>spring-cloud-starter-gateway</artifactId>
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
+ <exclusions>
|
|
|
|
+ <exclusion>
|
|
|
|
+ <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
+ <artifactId>jackson-databind</artifactId>
|
|
|
|
+ </exclusion>
|
|
|
|
+ </exclusions>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
<!--loadBalancer负载均衡-->
|
|
<!--loadBalancer负载均衡-->
|
|
<dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
@@ -136,6 +147,23 @@
|
|
<version>3.4.0</version>
|
|
<version>3.4.0</version>
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!--redis连接池需要此依赖-->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
|
+ <artifactId>commons-pool2</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
|
+ <artifactId>commons-lang3</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+
|
|
<!-- <dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>shop.alien</groupId>-->
|
|
<!-- <groupId>shop.alien</groupId>-->
|
|
<!-- <artifactId>alien-util</artifactId>-->
|
|
<!-- <artifactId>alien-util</artifactId>-->
|