# 项目信息配置 project: name: 联合利华事件上报系统 version: 1.0.0 # 环境,生产环境production,开发环境development env: development # 模式,testing测试模式 mode: testing # WEB服务器配置 server: port: 10010 spring: profiles: active: dev # JSON返回配置 jackson: # 默认时区 time-zone: GMT+8 # 默认日期格式化 date-format: yyyy-MM-dd HH:mm:ss # Quartz配置 quartz: # 是否自动启动 auto-startup: true # 调度器名称 scheduler-name: EvaScheduler # MyBatis配置 mybatis-plus: mapper-locations: classpath*:/mappers/**/*.xml configuration: map-underscore-to-camel-case: true log-impl: com.doumee.config.mybatis.DmStdOutImpl # 缓存内容设置 cache: session: # 会话过期时长(s) expire: 1800 captcha: # 验证码过期时长(s) expire: 300 # 跟踪日志 trace: # 开启智能跟踪模式 smart: true # 排除跟踪的URL正则 exclude-patterns: .+/list[a-zA-Z0-9\-\_]*$, .+/tree[a-zA-Z0-9\-\_]*$, .+/page[a-zA-Z0-9\-\_]*$, .+/all[a-zA-Z0-9\-\_]*$, /swagger-resources.* # 安全配置 security: aes: key: qklpNODl6JjmgcT+ iv: 7rnE4rm3h/hcfqN2 # 日志配置 logback: level: INFO appender: ${project.env} # 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