初始化项目

This commit is contained in:
2026-03-23 22:48:05 +08:00
parent b83cf380f2
commit c444e7eeb6

View File

@@ -47,6 +47,50 @@ mybatis:
refresh:
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 =========#
#======================================#