application.yml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. # 项目相关配置
  2. ruoyi:
  3. # 名称
  4. name: RuoYi
  5. # 版本
  6. version: 3.8.1
  7. # 版权年份
  8. copyrightYear: 2021
  9. # 实例演示开关
  10. demoEnabled: true
  11. # 文件路径 示例( Windows配置D:/ruoyi/uploadPath,Linux配置 /home/ruoyi/uploadPath)
  12. profile: D:/ruoyi/uploadPath
  13. # 获取ip地址开关
  14. addressEnabled: false
  15. # 验证码类型 math 数组计算 char 字符验证
  16. captchaType: math
  17. # 开发环境配置
  18. server:
  19. # 服务器的HTTP端口,默认为8080
  20. port: 8008
  21. servlet:
  22. # 应用的访问路径
  23. context-path: /
  24. tomcat:
  25. # tomcat的URI编码
  26. uri-encoding: UTF-8
  27. # tomcat最大线程数,默认为200
  28. max-threads: 800
  29. # Tomcat启动初始化的线程数,默认值25
  30. min-spare-threads: 30
  31. # Spring配置
  32. spring:
  33. # 资源信息
  34. messages:
  35. # 国际化资源文件路径
  36. basename: i18n/messages
  37. profiles:
  38. active: dev
  39. # 文件上传
  40. servlet:
  41. multipart:
  42. # 单个文件大小
  43. max-file-size: 10MB
  44. # 设置总上传的文件大小
  45. max-request-size: 20MB
  46. # 服务模块
  47. devtools:
  48. restart:
  49. # 热部署开关
  50. enabled: true
  51. # token配置
  52. token:
  53. # 令牌自定义标识
  54. header: Authorization
  55. # 令牌密钥
  56. secret: abcdefghijklmnopqrstuvwxyz
  57. # 令牌有效期(默认30分钟)
  58. expireTime: 3000
  59. # MyBatis配置
  60. #mybatis
  61. mybatis-plus:
  62. mapper-locations: classpath*:/mapper/**/*.xml,classpath:/META-INF/modeler-mybatis-mappings/*.xml
  63. #实体扫描,多个package用逗号或者分号分隔
  64. typeAliasesPackage: com.ruoyi.**.entity,com.ruoyi.**.domain
  65. global-config:
  66. #数据库相关配置
  67. db-config:
  68. #主键类型
  69. id-type: ASSIGN_ID
  70. banner: false
  71. #原生配置
  72. configuration:
  73. map-underscore-to-camel-case: true
  74. cache-enabled: false
  75. call-setters-on-nulls: true
  76. jdbc-type-for-null: 'null'
  77. log-impl: org.apache.ibatis.logging.stdout.StdOutImpl #开启sql日志
  78. configuration-properties:
  79. prefix:
  80. blobType: BLOB
  81. boolValue: TRUE
  82. # PageHelper分页插件
  83. pagehelper:
  84. helperDialect: mysql
  85. supportMethodsArguments: true
  86. params: count=countSql
  87. # Swagger配置
  88. swagger:
  89. # 是否开启swagger
  90. enabled: true
  91. # 请求前缀
  92. pathMapping: /dev-api
  93. # 防止XSS攻击
  94. xss:
  95. # 过滤开关
  96. enabled: true
  97. # 排除链接(多个用逗号分隔)
  98. excludes: /system/notice
  99. # 匹配链接
  100. urlPatterns: /system/*,/monitor/*,/tool/*
  101. # 是否开启服务
  102. #testtag:
  103. # autosend: true
  104. # aciservice: true