siwei-job-dev.yml 936 B

12345678910111213141516171819202122232425262728293031323334
  1. # spring配置
  2. spring:
  3. redis:
  4. host: 192.168.60.221
  5. port: 6379
  6. password:
  7. datasource:
  8. driver-class-name: org.postgresql.Driver
  9. url: jdbc:postgresql://192.168.60.221:5432/postgres?currentSchema=cloud&reWriteBatchedInserts=true&useUnicode=true&characterEncoding=utf8&serverTimezone=Asia/Shanghai
  10. username: postgres
  11. password: postgis
  12. # mybatis配置
  13. mybatis:
  14. # 搜索指定包别名
  15. typeAliasesPackage: com.siwei.job.domain
  16. # 配置mapper的扫描,找到所有的mapper.xml映射文件
  17. mapperLocations: classpath:mapper/postgresql/**/*.xml
  18. # springdoc配置
  19. springdoc:
  20. gatewayUrl: http://localhost:8080/${spring.application.name}
  21. api-docs:
  22. # 是否开启接口文档
  23. enabled: true
  24. info:
  25. # 标题
  26. title: '定时任务接口文档'
  27. # 描述
  28. description: '定时任务接口描述'
  29. # 作者信息
  30. contact:
  31. name: RuoYi
  32. url: https://ruoyi.vip