MrShi
2025-04-23 c8b32b8bca79a116cfab70eb8c389907b664c9ca
server/src/main/resources/application.yml
@@ -7,13 +7,9 @@
  # 模式,testing测试模式
  mode: testing
# WEB服务器配置
server:
  port: 10010
spring:
  profiles:
    active: dev
    active: test
  # JSON返回配置
  jackson:
    # 默认时区
@@ -26,6 +22,10 @@
    auto-startup: true
    # 调度器名称
    scheduler-name: EvaScheduler
  servlet:
    multipart:
      max-file-size: 50MB
      max-request-size: 50MB
# MyBatis配置
mybatis-plus:
@@ -33,7 +33,6 @@
  configuration:
    map-underscore-to-camel-case: true
    log-impl: com.doumee.config.mybatis.DmStdOutImpl
# 缓存内容设置
@@ -66,12 +65,12 @@
# dao层的日志设置为debug,方便查看sql
logging:
  level:
    com.doumee.dao: DEBUG
    # JOB相关
    com.doumee.dao.system.SystemJobMapper: INFO
    com.doumee.dao.system.SystemJobListMapper: INFO
    com.doumee.dao.system.SystemJobSnippetMapper: INFO
    com.doumee.dao.system.SystemJobLogMapper: INFO
    com.doumee.dao.system.SystemJobMapper: ERROR
    com.doumee.dao.system.SystemJobListMapper: ERROR
    com.doumee.dao.system.SystemJobSnippetMapper: ERROR
    com.doumee.dao.system.SystemJobLogMapper: ERROR
    com.doumee.dao.business: DEBUG
auth:
  jwt:
    enabled: true   #是否开启JWT登录认证功能