ruoyi-job-dev.yml 593 B

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