application.yml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. # 项目相关配置
  2. ruoyi:
  3. # 名称
  4. name: RuoYi
  5. # 版本
  6. version: 2.3.0
  7. # 版权年份
  8. copyrightYear: 2019
  9. # 实例演示开关
  10. demoEnabled: true
  11. # 文件路径 示例( Windows配置D:/ruoyi/uploadPath,Linux配置 /home/ruoyi/uploadPath)
  12. profile: D:/ruoyi/uploadPath
  13. # 获取ip地址开关
  14. addressEnabled: false
  15. # 开发环境配置
  16. server:
  17. # 服务器的HTTP端口,默认为8080
  18. port: 8080
  19. servlet:
  20. # 应用的访问路径
  21. context-path: /
  22. tomcat:
  23. # tomcat的URI编码
  24. uri-encoding: UTF-8
  25. # tomcat最大线程数,默认为200
  26. max-threads: 800
  27. # Tomcat启动初始化的线程数,默认值25
  28. min-spare-threads: 30
  29. # 日志配置
  30. logging:
  31. level:
  32. com.ruoyi: debug
  33. org.springframework: warn
  34. # Spring配置
  35. spring:
  36. # 资源信息
  37. messages:
  38. # 国际化资源文件路径
  39. basename: i18n/messages
  40. profiles:
  41. active: druid
  42. # 文件上传
  43. servlet:
  44. multipart:
  45. # 单个文件大小
  46. max-file-size: 10MB
  47. # 设置总上传的文件大小
  48. max-request-size: 20MB
  49. # 服务模块
  50. devtools:
  51. restart:
  52. # 热部署开关
  53. enabled: true
  54. # redis 配置
  55. redis:
  56. # 地址
  57. host: localhost
  58. # 端口,默认为6379
  59. port: 6379
  60. # 密码
  61. password:
  62. # 连接超时时间
  63. timeout: 10s
  64. lettuce:
  65. pool:
  66. # 连接池中的最小空闲连接
  67. min-idle: 0
  68. # 连接池中的最大空闲连接
  69. max-idle: 8
  70. # 连接池的最大数据库连接数
  71. max-active: 8
  72. # #连接池最大阻塞等待时间(使用负值表示没有限制)
  73. max-wait: -1ms
  74. # token配置
  75. token:
  76. # 令牌自定义标识
  77. header: Authorization
  78. # 令牌秘钥
  79. secret: abcdefghijklmnopqrstuvwxyz
  80. # 令牌有效期(默认30分钟)
  81. expireTime: 30
  82. # MyBatis配置
  83. mybatis:
  84. # 搜索指定包别名
  85. typeAliasesPackage: com.ruoyi.project.**.domain
  86. # 配置mapper的扫描,找到所有的mapper.xml映射文件
  87. mapperLocations: classpath*:mybatis/**/*Mapper.xml
  88. # 加载全局的配置文件
  89. configLocation: classpath:mybatis/mybatis-config.xml
  90. # PageHelper分页插件
  91. pagehelper:
  92. helperDialect: mysql
  93. reasonable: true
  94. supportMethodsArguments: true
  95. params: count=countSql
  96. # Swagger配置
  97. swagger:
  98. # 是否开启swagger
  99. enabled: true
  100. # 请求前缀
  101. pathMapping: /dev-api
  102. # 防止XSS攻击
  103. xss:
  104. # 过滤开关
  105. enabled: true
  106. # 排除链接(多个用逗号分隔)
  107. excludes: /system/notice/*
  108. # 匹配链接
  109. urlPatterns: /system/*,/monitor/*,/tool/*
  110. # 代码生成
  111. gen:
  112. # 作者
  113. author: ruoyi
  114. # 默认生成包路径 system 需改成自己的模块名称 如 system monitor tool
  115. packageName: com.ruoyi.project.system
  116. # 自动去除表前缀,默认是true
  117. autoRemovePre: false
  118. # 表前缀(生成类名不会包含表前缀,多个用逗号分隔)
  119. tablePrefix: sys_