parent
cf2a5a0498
commit
8369e9ef1b
6
pom.xml
6
pom.xml
|
|
@ -20,6 +20,7 @@
|
||||||
<poi.version>3.17</poi.version>
|
<poi.version>3.17</poi.version>
|
||||||
<jwt.version>0.9.0</jwt.version>
|
<jwt.version>0.9.0</jwt.version>
|
||||||
<mybatis.version>1.3.2</mybatis.version>
|
<mybatis.version>1.3.2</mybatis.version>
|
||||||
|
<commons-pool2.version>2.5.0</commons-pool2.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
|
@ -134,6 +135,11 @@
|
||||||
<artifactId>jjwt</artifactId>
|
<artifactId>jjwt</artifactId>
|
||||||
<version>${jwt.version}</version>
|
<version>${jwt.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.commons</groupId>
|
||||||
|
<artifactId>commons-pool2</artifactId>
|
||||||
|
<version>${commons-pool2.version}</version>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -32,6 +32,13 @@ spring:
|
||||||
redis:
|
redis:
|
||||||
host: localhost
|
host: localhost
|
||||||
port: 6379
|
port: 6379
|
||||||
|
timeout: 3000
|
||||||
|
lettuce:
|
||||||
|
pool:
|
||||||
|
min-idle: 0
|
||||||
|
max-idle: 8
|
||||||
|
max-active: 8
|
||||||
|
max-wait: -1
|
||||||
mail:
|
mail:
|
||||||
default-encoding: UTF-8
|
default-encoding: UTF-8
|
||||||
host: smtp.163.com
|
host: smtp.163.com
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue