初始化项目
This commit is contained in:
@@ -47,6 +47,50 @@ mybatis:
|
|||||||
refresh:
|
refresh:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
||||||
|
#======================================#
|
||||||
|
#========== Spring settings ===========#
|
||||||
|
#======================================#
|
||||||
|
|
||||||
|
spring:
|
||||||
|
|
||||||
|
# 应用程序名称
|
||||||
|
application:
|
||||||
|
name: jeesite-web-api
|
||||||
|
|
||||||
|
# 环境名称(注意:不可设置为 test 它是单元测试专用的名称)
|
||||||
|
profiles:
|
||||||
|
active: default
|
||||||
|
|
||||||
|
# 打印横幅
|
||||||
|
main:
|
||||||
|
banner-mode: "off"
|
||||||
|
lazy-initialization: true
|
||||||
|
|
||||||
|
# JTA XA 事务(spring boot 3)
|
||||||
|
jta:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
|
# 事务超时时间,单位秒(30分钟)(spring boot 3)
|
||||||
|
transaction:
|
||||||
|
default-timeout: 30m
|
||||||
|
|
||||||
|
# Redis 连接参数 (RedisProperties)
|
||||||
|
data:
|
||||||
|
redis:
|
||||||
|
host: 192.168.31.194
|
||||||
|
port: 16379
|
||||||
|
ssl:
|
||||||
|
enabled: false
|
||||||
|
database: 0
|
||||||
|
password: admin
|
||||||
|
timeout: 20000
|
||||||
|
lettuce:
|
||||||
|
pool:
|
||||||
|
# 最大空闲连接数
|
||||||
|
maxIdle: 3
|
||||||
|
# 最大活动连接数
|
||||||
|
maxActive: 20
|
||||||
|
|
||||||
#======================================#
|
#======================================#
|
||||||
#======== FileUpload settings =========#
|
#======== FileUpload settings =========#
|
||||||
#======================================#
|
#======================================#
|
||||||
|
|||||||
Reference in New Issue
Block a user