12345678910111213141516171819202122232425262728 |
- # spring配置
- spring:
- redis:
- host: 10.16.4.12
- port: 6379
- password:
- datasource:
- driver-class-name: com.mysql.cj.jdbc.Driver
- url: jdbc:mysql://121.36.73.159:56612/mz-cloud?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
- username: dev
- password: sckj2022@123
- # mybatis配置
- mybatis-plus:
- # 搜索指定包别名
- typeAliasesPackage: com.ruoyi
- mapperPackage: com.ruoyi..mapper
- # 配置mapper的扫描,找到所有的mapper.xml映射文件
- mapperLocations: classpath*:mapper/**/*.xml
- global-config.db-config:
- id-type: assign_uuid
- select-strategy: not_empty
- # swagger配置
- swagger:
- title: 定时任务接口文档
- license: Powered By ruoyi
- licenseUrl: https://ruoyi.vip
|