100 lines
4.2 KiB
YAML
100 lines
4.2 KiB
YAML
server:
|
||
port: 48080
|
||
|
||
--- #################### 数据库相关配置 ####################
|
||
spring:
|
||
autoconfigure:
|
||
# noinspection SpringBootApplicationYaml
|
||
exclude:
|
||
- org.springframework.ai.vectorstore.qdrant.autoconfigure.QdrantVectorStoreAutoConfiguration # 禁用 AI 模块的 Qdrant,手动创建
|
||
- org.springframework.ai.vectorstore.milvus.autoconfigure.MilvusVectorStoreAutoConfiguration # 禁用 AI 模块的 Milvus,手动创建
|
||
# 数据源配置项
|
||
datasource:
|
||
druid: # Druid 【监控】相关的全局配置
|
||
web-stat-filter:
|
||
enabled: true
|
||
stat-view-servlet:
|
||
enabled: true
|
||
allow: # 设置白名单,不填则允许所有访问
|
||
url-pattern: /druid/*
|
||
login-username: # 控制台管理用户名和密码
|
||
login-password:
|
||
filter:
|
||
stat:
|
||
enabled: true
|
||
log-slow-sql: true # 慢 SQL 记录
|
||
slow-sql-millis: 100
|
||
merge-sql: true
|
||
wall:
|
||
config:
|
||
multi-statement-allow: true
|
||
dynamic: # 多数据源配置
|
||
druid: # Druid 【连接池】相关的全局配置
|
||
initial-size: 1 # 初始连接数
|
||
min-idle: 1 # 最小连接池数量
|
||
max-active: 20 # 最大连接池数量
|
||
max-wait: 60000 # 配置获取连接等待超时的时间,单位:毫秒(1 分钟)
|
||
time-between-eviction-runs-millis: 60000 # 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位:毫秒(1 分钟)
|
||
min-evictable-idle-time-millis: 600000 # 配置一个连接在池中最小生存的时间,单位:毫秒(10 分钟)
|
||
max-evictable-idle-time-millis: 1800000 # 配置一个连接在池中最大生存的时间,单位:毫秒(30 分钟)
|
||
validation-query: SELECT 1 FROM DUAL # 配置检测连接是否有效
|
||
test-while-idle: true
|
||
test-on-borrow: false
|
||
test-on-return: false
|
||
pool-prepared-statements: true # 是否开启 PreparedStatement 缓存
|
||
max-pool-prepared-statement-per-connection-size: 20 # 每个连接缓存的 PreparedStatement 数量
|
||
primary: master
|
||
datasource:
|
||
master:
|
||
url: jdbc:mysql://192.168.1.22:13306/msgpush?useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true&rewriteBatchedStatements=true # MySQL Connector/J 8.X 连接的示例
|
||
username: root
|
||
password: njcnpqs
|
||
|
||
|
||
# Redis 配置。Redisson 默认的配置足够使用,一般不需要进行调优
|
||
data:
|
||
redis:
|
||
host: 127.0.0.1 # 地址
|
||
port: 16379 # 端口
|
||
database: 0 # 数据库索引
|
||
# password: dev # 密码,建议生产环境开启
|
||
|
||
|
||
#################### 监控相关配置 ####################
|
||
|
||
# Actuator 监控端点的配置项
|
||
management:
|
||
endpoints:
|
||
web:
|
||
base-path: /actuator # Actuator 提供的 API 接口的根目录。默认为 /actuator
|
||
exposure:
|
||
include: '*' # 需要开放的端点。默认值只打开 health 和 info 两个端点。通过设置 * ,可以开放所有端点。
|
||
|
||
|
||
# 日志文件配置
|
||
logging:
|
||
file:
|
||
name: ${user.home}/logs/${spring.application.name}.log # 日志文件名,全路径
|
||
level:
|
||
# 配置自己写的 MyBatis Mapper 打印日志
|
||
com.njcn.msgpush.module.infra.dal.mysql: debug
|
||
com.njcn.msgpush.module.infra.dal.mysql.logger.ApiErrorLogMapper: INFO # 配置 ApiErrorLogMapper 的日志级别为 info,避免和 GlobalExceptionHandler 重复打印
|
||
com.njcn.msgpush.module.infra.dal.mysql.job.JobLogMapper: INFO # 配置 JobLogMapper 的日志级别为 info
|
||
com.njcn.msgpush.module.infra.dal.mysql.file.FileConfigMapper: INFO # 配置 FileConfigMapper 的日志级别为 info
|
||
com.njcn.msgpush.module.system.dal.mysql: debug
|
||
com.njcn.msgpush.module.system.dal.mysql.sms.SmsChannelMapper: INFO # 配置 SmsChannelMapper 的日志级别为 info
|
||
|
||
debug: false
|
||
|
||
--- #################### 灿能相关配置 ####################
|
||
|
||
# 灿能配置项,设置当前项目所有自定义的配置
|
||
msgpush:
|
||
captcha:
|
||
enable: false # 本地环境,暂时关闭图片验证码,方便登录等接口的测试;
|
||
security:
|
||
mock-enable: true
|
||
access-log: # 访问日志的配置项
|
||
enable: false
|
||
demo: false # 关闭演示模式
|