ruoyi-job-dev.yml 643 B

1234567891011121314151617181920
  1. # 将此内容填入nacos对应的配置内容中
  2. spring:
  3. datasource:
  4. driver-class-name: com.mysql.cj.jdbc.Driver
  5. url: jdbc:mysql://localhost:3306/ry-cloud?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
  6. username: root
  7. password: password
  8. # mybatis配置
  9. mybatis:
  10. # 搜索指定包别名
  11. typeAliasesPackage: com.ruoyi.job.domain
  12. # 配置mapper的扫描,找到所有的mapper.xml映射文件
  13. mapperLocations: classpath:mapper/**/*.xml
  14. # swagger配置
  15. swagger:
  16. title: 定时任务接口文档
  17. license: Powered By ruoyi
  18. licenseUrl: https://ruoyi.vip