application.yml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. # 项目相关配置
  2. ruoyi:
  3. # 名称
  4. name: RuoYi
  5. # 版本
  6. version: 3.8.3
  7. # 版权年份
  8. copyrightYear: 2022
  9. # 实例演示开关
  10. demoEnabled: true
  11. # 文件路径 示例( Windows配置D:/ruoyi/uploadPath,Linux配置 /home/ruoyi/uploadPath)
  12. profile: E:/ruoyi/uploadPath # --ruoyi.profile=/root/ydl/lab-manage-GZYKD/ruoyi/uploadPath
  13. # 获取ip地址开关
  14. addressEnabled: false
  15. # 验证码类型 math 数组计算 char 字符验证
  16. captchaType: math
  17. # 开发环境配置
  18. server:
  19. # 服务器的HTTP端口,默认为8080
  20. port: 8080
  21. servlet:
  22. # 应用的访问路径
  23. context-path: /
  24. tomcat:
  25. # tomcat的URI编码
  26. uri-encoding: UTF-8
  27. # 连接数满后的排队数,默认为100
  28. accept-count: 1000
  29. threads:
  30. # tomcat最大线程数,默认为200
  31. max: 800
  32. # Tomcat启动初始化的线程数,默认值10
  33. min-spare: 100
  34. ssl: # 配置SSL
  35. key-store: classpath:sylwt.top.jks
  36. key-store-password: 8470678b3qon7x2
  37. key-store-type: JKS
  38. enabled: true
  39. # 日志配置
  40. logging:
  41. level:
  42. com.ruoyi: debug
  43. org.springframework: warn
  44. # 用户配置
  45. user:
  46. password:
  47. # 密码最大错误次数
  48. maxRetryCount: 5
  49. # 密码锁定时间(默认10分钟)
  50. lockTime: 10
  51. # Spring配置
  52. spring:
  53. # 资源信息
  54. messages:
  55. # 国际化资源文件路径
  56. basename: i18n/messages
  57. profiles:
  58. active: druid
  59. # 文件上传
  60. servlet:
  61. multipart:
  62. # 单个文件大小
  63. max-file-size: 200MB
  64. # 设置总上传的文件大小
  65. max-request-size: 500MB
  66. # 服务模块
  67. devtools:
  68. restart:
  69. # 热部署开关
  70. enabled: true
  71. # redis 配置
  72. redis:
  73. # 地址
  74. # host: 114.116.114.108
  75. # 密码
  76. # password: foobared
  77. # 地址
  78. host: 43.139.55.209
  79. # 密码
  80. password: syLwt@123456
  81. # 端口,默认为6379
  82. port: 6379
  83. # 数据库索引
  84. database: 1
  85. # 连接超时时间
  86. timeout: 10s
  87. lettuce:
  88. pool:
  89. # 连接池中的最小空闲连接
  90. min-idle: 0
  91. # 连接池中的最大空闲连接
  92. max-idle: 8
  93. # 连接池的最大数据库连接数
  94. max-active: 8
  95. # #连接池最大阻塞等待时间(使用负值表示没有限制)
  96. max-wait: -1ms
  97. mail:
  98. host: smtp.qq.com
  99. username: 2130933887@qq.com
  100. password: wcwoluyjkuvefcib
  101. properties:
  102. mail:
  103. smtp: true
  104. starttls:
  105. enable: true
  106. required: true
  107. # token配置
  108. token:
  109. # 令牌自定义标识
  110. header: Authorization
  111. # 令牌密钥
  112. secret: abcdefghijklmnopqrstuvwxyz
  113. # 令牌有效期(默认30分钟)
  114. expireTime: 30
  115. # MyBatis Plus配置
  116. mybatis-plus:
  117. # 搜索指定包别名
  118. typeAliasesPackage: com.ruoyi.**.domain
  119. # 配置mapper的扫描,找到所有的mapper.xml映射文件
  120. mapperLocations: classpath*:mapper/**/*Mapper.xml
  121. # 加载全局的配置文件
  122. configLocation: classpath:mybatis/mybatis-config.xml
  123. # 主键自增
  124. global-config:
  125. db-config:
  126. id-type: auto
  127. # PageHelper分页插件
  128. pagehelper:
  129. helperDialect: mysql
  130. supportMethodsArguments: true
  131. params: count=countSql
  132. # Swagger配置
  133. swagger:
  134. # 是否开启swagger
  135. enabled: true
  136. # 请求前缀
  137. pathMapping: /dev-api
  138. # 防止XSS攻击
  139. xss:
  140. # 过滤开关
  141. enabled: true
  142. # 排除链接(多个用逗号分隔)
  143. excludes: /system/notice
  144. # 匹配链接
  145. urlPatterns: /system/*,/monitor/*,/tool/*