application-integration-test.yaml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. spring:
  2. main:
  3. lazy-initialization: true # 开启懒加载,加快速度
  4. banner-mode: off # 单元测试,禁用 Banner
  5. --- #################### 数据库相关配置 ####################
  6. spring:
  7. # 数据源配置项
  8. autoconfigure:
  9. exclude:
  10. - com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure # 排除 Druid 的自动配置,使用 dynamic-datasource-spring-boot-starter 配置多数据源
  11. datasource:
  12. druid: # Druid 【监控】相关的全局配置
  13. web-stat-filter:
  14. enabled: true
  15. stat-view-servlet:
  16. enabled: true
  17. allow: # 设置白名单,不填则允许所有访问
  18. url-pattern: /druid/*
  19. login-username: # 控制台管理用户名和密码
  20. login-password:
  21. filter:
  22. stat:
  23. enabled: true
  24. log-slow-sql: true # 慢 SQL 记录
  25. slow-sql-millis: 100
  26. merge-sql: true
  27. wall:
  28. config:
  29. multi-statement-allow: true
  30. dynamic: # 多数据源配置
  31. druid: # Druid 【连接池】相关的全局配置
  32. initial-size: 5 # 初始连接数
  33. min-idle: 10 # 最小连接池数量
  34. max-active: 20 # 最大连接池数量
  35. max-wait: 600000 # 配置获取连接等待超时的时间,单位:毫秒
  36. time-between-eviction-runs-millis: 60000 # 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位:毫秒
  37. min-evictable-idle-time-millis: 300000 # 配置一个连接在池中最小生存的时间,单位:毫秒
  38. max-evictable-idle-time-millis: 900000 # 配置一个连接在池中最大生存的时间,单位:毫秒
  39. validation-query: SELECT 1 FROM DUAL # 配置检测连接是否有效
  40. test-while-idle: true
  41. test-on-borrow: false
  42. test-on-return: false
  43. primary: master
  44. datasource:
  45. master:
  46. name: ruoyi-vue-pro
  47. url: jdbc:mysql://127.0.0.1:3306/${spring.datasource.dynamic.datasource.master.name}?useSSL=false&useUnicode=true&characterEncoding=UTF-8&serverTimezone=CTT
  48. driver-class-name: com.mysql.jdbc.Driver
  49. username: root
  50. password: 123456
  51. slave: # 模拟从库,可根据自己需要修改
  52. name: ruoyi-vue-pro
  53. url: jdbc:mysql://127.0.0.1:3306/${spring.datasource.dynamic.datasource.slave.name}?useSSL=false&useUnicode=true&characterEncoding=UTF-8&serverTimezone=CTT
  54. driver-class-name: com.mysql.jdbc.Driver
  55. username: root
  56. password: 123456
  57. # Redis 配置。Redisson 默认的配置足够使用,一般不需要进行调优
  58. data:
  59. redis:
  60. host: 127.0.0.1 # 地址
  61. port: 16379 # 端口(单元测试,使用 16379 端口)
  62. database: 0 # 数据库索引
  63. mybatis:
  64. lazy-initialization: true # 单元测试,设置 MyBatis Mapper 延迟加载,加速每个单元测试
  65. --- #################### 定时任务相关配置 ####################
  66. --- #################### 配置中心相关配置 ####################
  67. --- #################### 服务保障相关配置 ####################
  68. # Lock4j 配置项(单元测试,禁用 Lock4j)
  69. --- #################### 监控相关配置 ####################
  70. --- #################### 芋道相关配置 ####################
  71. # 芋道配置项,设置当前项目所有自定义的配置
  72. yudao:
  73. security:
  74. token-header: Authorization
  75. token-secret: abcdefghijklmnopqrstuvwxyz
  76. token-timeout: 1d
  77. session-timeout: 30m
  78. mock-enable: true
  79. mock-secret: test
  80. swagger:
  81. enable: false # 单元测试,禁用 Swagger
  82. file:
  83. base-path: http://127.0.0.1:${server.port}/${yudao.web.api-prefix}/file/get/
  84. xss:
  85. enable: false
  86. exclude-urls: # 如下两个 url,仅仅是为了演示,去掉配置也没关系
  87. - ${spring.boot.admin.context-path}/** # 不处理 Spring Boot Admin 的请求
  88. - ${management.endpoints.web.base-path}/** # 不处理 Actuator 的请求