zhangnaisong
2024-07-24 15c5686fd26706e78143b455e47782d52bd836e4
ruoyi-admin/src/main/resources/application.yml
@@ -29,15 +29,31 @@
  secret: abcdefghijklmnopqrstuvwxyz
  # 令牌有效期(默认30分钟)
  expireTime: 30
  # 是否允许账户多终端同时登录 (true 允许/ false 不允许)
  soloLogin: true
# MyBatis配置
#mybatis:
#    # 搜索指定包别名
#    typeAliasesPackage: com.ruoyi.**.domain
#    # 配置mapper的扫描,找到所有的mapper.xml映射文件
#    mapperLocations: classpath*:mapper/**/*Mapper.xml
#    # 加载全局的配置文件
#    configLocation: classpath:mybatis/mybatis-config.xml
mybatis-plus:
  type-Aliases-Package: com.ruoyi.**.domain
  mapper-Locations: classpath*:mapper/**/*Mapper.xml
  config-Location: classpath:mybatis/mybatis-config.xml
  global-config:
    banner: off # 关闭mybatisplus启动图标
    db-config: #主键不用MyBatis plus的雪花算法,用数据库的主键自增
      id-type: uuid
#    db-config: #主键不用MyBatis plus的雪花算法,用数据库的主键自增
#      id-type: uuid
#  configuration:
#    # 是否开启自动驼峰命名规则映射:从数据库列名到Java属性驼峰命名的类似映射
#    map-underscore-to-camel-case: true
#    # 如果查询结果中包含空值的列,则 MyBatis 在映射的时候,不会映射这个字段
#    call-setters-on-nulls: true
#    # 这个配置会将执行的sql打印出来,在开发或测试的时候可以用
#    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
# PageHelper分页插件
pagehelper:
  helperDialect: postgresql
@@ -61,6 +77,9 @@
  log-response-status: true    # 打开/关闭Forest响应状态日志(默认为 true)
  log-response-content: true   # 打开/关闭Forest响应内容日志(默认为 false)
  async-mode: platform         # [自v1.5.27版本起可用] 异步模式(默认为 platform)
  converters:
    json:
      type: com.dtflys.forest.converter.json.ForestJacksonConverter
# 防止XSS攻击
xss:
  # 过滤开关
@@ -71,10 +90,10 @@
  urlPatterns: /system/*,/monitor/*,/tool/*
#异步线程池配置
ThreadPoolTask:
  corePoolSize: 20
  maxPoolSize: 40
  corePoolSize: 10
  maxPoolSize: 10
  keepAliveSeconds: 300
  queueCapacity: 50
  queueCapacity: 500
# Spring配置
spring:
  # 资源信息