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