application-unit-test.yaml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. spring:
  2. main:
  3. lazy-initialization: true # 开启懒加载,加快速度
  4. banner-mode: off # 单元测试,禁用 Banner
  5. # 去除的自动配置项
  6. autoconfigure:
  7. exclude:
  8. - org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration # 单元测试,禁用 SpringSecurity
  9. - org.springframework.boot.autoconfigure.security.reactive.ReactiveSecurityAutoConfiguration # 单元测试,禁用 SpringSecurity
  10. - org.springframework.boot.autoconfigure.quartz.QuartzAutoConfiguration # 单元测试,禁用 Quartz
  11. - com.baomidou.lock.spring.boot.autoconfigure.LockAutoConfiguration # 单元测试,禁用 Lock4j 分布式锁
  12. - org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration # 单元测试,禁用 Scheduler 定时任务
  13. - org.springframework.boot.autoconfigure.data.redis.RedisRepositoriesAutoConfiguration # 项目没有使用 Spring Data,所以禁用配置类,加速启动
  14. # Swagger 接口文档的自动配置(单元测试,禁用 Swagger)
  15. springfox:
  16. documentation:
  17. auto-startup: false
  18. --- #################### 数据库相关配置 ####################
  19. spring:
  20. # 数据源配置项
  21. datasource:
  22. name: ruoyi-vue-pro
  23. url: jdbc:h2:mem:testdb;MODE=MYSQL;DATABASE_TO_UPPER=false; # MODE 使用 MySQL 模式;DATABASE_TO_UPPER 配置表和字段使用小写
  24. driver-class-name: org.h2.Driver
  25. username: sa
  26. password:
  27. schema: classpath:sql/create_tables.sql # MySQL 转 H2 的语句,使用 https://www.jooq.org/translate/ 工具
  28. # Redis 配置。Redisson 默认的配置足够使用,一般不需要进行调优
  29. redis:
  30. host: 127.0.0.1 # 地址
  31. port: 16379 # 端口(单元测试,使用 16379 端口)
  32. database: 0 # 数据库索引
  33. --- #################### 定时任务相关配置 ####################
  34. # Quartz 配置项,对应 QuartzProperties 配置类(单元测试,禁用 Quartz)
  35. --- #################### 配置中心相关配置 ####################
  36. # Apollo 配置中心
  37. apollo:
  38. bootstrap:
  39. enabled: false # 单元测试,禁用配置中心
  40. --- #################### 服务保障相关配置 ####################
  41. # Lock4j 配置项(单元测试,禁用 Lock4j)
  42. # Resilience4j 配置项
  43. resilience4j:
  44. ratelimiter:
  45. instances:
  46. backendA:
  47. limit-for-period: 1 # 每个周期内,允许的请求数。默认为 50
  48. limit-refresh-period: 60s # 每个周期的时长,单位:微秒。默认为 500
  49. timeout-duration: 1s # 被限流时,阻塞等待的时长,单位:微秒。默认为 5s
  50. register-health-indicator: true # 是否注册到健康监测
  51. --- #################### 监控相关配置 ####################
  52. # Actuator 监控端点的配置项
  53. management:
  54. endpoints:
  55. enabled-by-default: false
  56. # Spring Boot Admin 配置项
  57. spring:
  58. boot:
  59. admin:
  60. # Spring Boot Admin Client 客户端的相关配置
  61. client:
  62. enabled: false
  63. # Spring Boot Admin Server 服务端的相关配置
  64. context-path: /admin # 配置 Spring
  65. # 日志文件配置(不需要配置)
  66. --- #################### 芋道相关配置 ####################
  67. # 芋道配置项,设置当前项目所有自定义的配置
  68. yudao:
  69. info:
  70. version: 1.0.0
  71. base-package: cn.iocoder.dashboard
  72. web:
  73. api-prefix: /api
  74. controller-package: ${yudao.info.base-package}
  75. security:
  76. token-header: Authorization
  77. token-secret: abcdefghijklmnopqrstuvwxyz
  78. token-timeout: 1d
  79. session-timeout: 30m
  80. mock-enable: true
  81. mock-secret: test
  82. swagger:
  83. enable: false # 单元测试,禁用 Swagger
  84. captcha:
  85. timeout: 5m
  86. width: 160
  87. height: 60
  88. file:
  89. base-path: http://127.0.0.1:${server.port}/${yudao.web.api-prefix}/file/get/
  90. codegen:
  91. base-package: ${yudao.info.base-package}.modules
  92. db-schemas: ${spring.datasource.name}
  93. xss:
  94. enable: false
  95. exclude-urls: # 如下两个 url,仅仅是为了演示,去掉配置也没关系
  96. - ${spring.boot.admin.context-path}/** # 不处理 Spring Boot Admin 的请求
  97. - ${management.endpoints.web.base-path}/** # 不处理 Actuator 的请求