Merge remote-tracking branch 'origin/springboot3' into springboot3_sas

springboot3_sas
JEECG 2025-08-03 10:33:40 +08:00
commit 1f74cb538f
5 changed files with 45 additions and 8 deletions

View File

@ -34,17 +34,22 @@ spring:
max-file-size: 10MB max-file-size: 10MB
max-request-size: 10MB max-request-size: 10MB
mail: mail:
# 定时任务发送邮件
timeJobSend: false
host: smtp.163.com host: smtp.163.com
username: jeecgos@163.com username: jeecgos@163.com
password: ?? password: ??
properties: properties:
mail.smtp.timeout: 10000 # 连接超时(毫秒)
mail.smtp.connectiontimeout: 10000 # 连接超时(毫秒)
mail.smtp.writetimeout: 10000 # 写入超时(毫秒)
mail.smtp.auth: true mail.smtp.auth: true
smtp.ssl.enable: true smtp.ssl.enable: true
## quartz定时任务,采用数据库方式 ## quartz定时任务,采用数据库方式
quartz: quartz:
job-store-type: jdbc job-store-type: jdbc
jdbc: jdbc:
initialize-schema: never initialize-schema: embedded
#定时任务启动开关true-开 false-关 #定时任务启动开关true-开 false-关
auto-startup: true auto-startup: true
#延迟1秒启动定时任务 #延迟1秒启动定时任务
@ -166,7 +171,7 @@ jeecg:
enabled: true enabled: true
model: deepseek-chat model: deepseek-chat
apiKey: ?? apiKey: ??
apiHost: https://api.deepseek.com apiHost: https://api.deepseek.com/v1
timeout: 60 timeout: 60
# AIRag向量库 # AIRag向量库
ai-rag: ai-rag:
@ -204,6 +209,18 @@ jeecg:
secretKey: ?? secretKey: ??
endpoint: oss-cn-beijing.aliyuncs.com endpoint: oss-cn-beijing.aliyuncs.com
bucketName: jeecgdev bucketName: jeecgdev
# 短信模板
sms-template:
# 签名
signature:
# 模板code
templateCode:
# 登录短信、忘记密码模板编码
SMS_175435174:
# 修改密码短信模板编码
SMS_465391221:
# 注册账号短信模板编码
SMS_175430166:
# 在线预览文件服务器地址配置 # 在线预览文件服务器地址配置
file-view-domain: http://fileview.jeecg.com file-view-domain: http://fileview.jeecg.com
# minio文件上传 # minio文件上传

View File

@ -109,7 +109,7 @@ spring:
static-locations: classpath:/static/,classpath:/public/ static-locations: classpath:/static/,classpath:/public/
autoconfigure: autoconfigure:
exclude: exclude:
- com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure - com.alibaba.druid.spring.boot3.autoconfigure.DruidDataSourceAutoConfigure
- org.springframework.boot.autoconfigure.flyway.FlywayAutoConfiguration - org.springframework.boot.autoconfigure.flyway.FlywayAutoConfiguration
datasource: datasource:
druid: druid:
@ -141,7 +141,7 @@ spring:
poolPreparedStatements: true poolPreparedStatements: true
maxPoolPreparedStatementPerConnectionSize: 20 maxPoolPreparedStatementPerConnectionSize: 20
# 配置监控统计拦截的filters去掉后监控界面sql无法统计'wall'用于防火墙 # 配置监控统计拦截的filters去掉后监控界面sql无法统计'wall'用于防火墙
filters: stat,wall,slf4j filters: stat,slf4j
# 允许SELECT语句的WHERE子句是一个永真条件 # 允许SELECT语句的WHERE子句是一个永真条件
wall: wall:
selectWhereAlwayTrueCheck: false selectWhereAlwayTrueCheck: false
@ -290,6 +290,7 @@ cas:
#Mybatis输出sql日志 #Mybatis输出sql日志
logging: logging:
level: level:
org.springframework.context.support.PostProcessorRegistrationDelegate: error
org.flywaydb: debug org.flywaydb: debug
org.jeecg.modules.system.mapper: info org.jeecg.modules.system.mapper: info
#swagger #swagger

View File

@ -35,17 +35,22 @@ spring:
max-file-size: 10MB max-file-size: 10MB
max-request-size: 10MB max-request-size: 10MB
mail: mail:
# 定时任务发送邮件
timeJobSend: false
host: smtp.163.com host: smtp.163.com
username: jeecgos@163.com username: jeecgos@163.com
password: ?? password: ??
properties: properties:
mail.smtp.timeout: 10000 # 连接超时(毫秒)
mail.smtp.connectiontimeout: 10000 # 连接超时(毫秒)
mail.smtp.writetimeout: 10000 # 写入超时(毫秒)
mail.smtp.auth: true mail.smtp.auth: true
smtp.ssl.enable: true smtp.ssl.enable: true
## quartz定时任务,采用数据库方式 ## quartz定时任务,采用数据库方式
quartz: quartz:
job-store-type: jdbc job-store-type: jdbc
jdbc: jdbc:
initialize-schema: never initialize-schema: embedded
#定时任务启动开关true-开 false-关 #定时任务启动开关true-开 false-关
auto-startup: true auto-startup: true
#延迟1秒启动定时任务 #延迟1秒启动定时任务
@ -181,7 +186,7 @@ jeecg:
enabled: true enabled: true
model: deepseek-chat model: deepseek-chat
apiKey: ?? apiKey: ??
apiHost: https://api.deepseek.com apiHost: https://api.deepseek.com/v1
timeout: 60 timeout: 60
# AIRag向量库 # AIRag向量库
ai-rag: ai-rag:
@ -219,6 +224,18 @@ jeecg:
secretKey: ?? secretKey: ??
endpoint: oss-cn-beijing.aliyuncs.com endpoint: oss-cn-beijing.aliyuncs.com
bucketName: jeecgdev bucketName: jeecgdev
# 短信模板
sms-template:
# 签名
signature:
# 模板code
templateCode:
# 登录短信、忘记密码模板编码
SMS_175435174:
# 修改密码短信模板编码
SMS_465391221:
# 注册账号短信模板编码
SMS_175430166:
# 在线预览文件服务器地址配置 # 在线预览文件服务器地址配置
file-view-domain: http://fileview.jeecg.com file-view-domain: http://fileview.jeecg.com
# minio文件上传 # minio文件上传

View File

@ -108,7 +108,7 @@ spring:
static-locations: classpath:/static/,classpath:/public/ static-locations: classpath:/static/,classpath:/public/
autoconfigure: autoconfigure:
exclude: exclude:
- com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure - com.alibaba.druid.spring.boot3.autoconfigure.DruidDataSourceAutoConfigure
- org.springframework.boot.autoconfigure.flyway.FlywayAutoConfiguration - org.springframework.boot.autoconfigure.flyway.FlywayAutoConfiguration
datasource: datasource:
druid: druid:
@ -282,6 +282,7 @@ cas:
#Mybatis输出sql日志 #Mybatis输出sql日志
logging: logging:
level: level:
org.springframework.context.support.PostProcessorRegistrationDelegate: error
org.flywaydb: debug org.flywaydb: debug
org.jeecg.modules.system.mapper: info org.jeecg.modules.system.mapper: info
#swagger #swagger

View File

@ -108,7 +108,7 @@ spring:
static-locations: classpath:/static/,classpath:/public/ static-locations: classpath:/static/,classpath:/public/
autoconfigure: autoconfigure:
exclude: exclude:
- com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure - com.alibaba.druid.spring.boot3.autoconfigure.DruidDataSourceAutoConfigure
- org.springframework.boot.autoconfigure.flyway.FlywayAutoConfiguration - org.springframework.boot.autoconfigure.flyway.FlywayAutoConfiguration
datasource: datasource:
druid: druid:
@ -277,6 +277,7 @@ cas:
#Mybatis输出sql日志 #Mybatis输出sql日志
logging: logging:
level: level:
org.springframework.context.support.PostProcessorRegistrationDelegate: error
org.flywaydb: debug org.flywaydb: debug
org.jeecg.modules.system.mapper: info org.jeecg.modules.system.mapper: info
#swagger #swagger