12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- server:
- port: 8080
- spring:
- application:
- name: scheduler
- mvc:
- favicon:
- enabled: true
- jmx:
- default-domain: scheduler
- datasource:
- name: scheduler_str
- type: com.alibaba.druid.pool.DruidDataSource
- driver-class-name: com.mysql.cj.jdbc.Driver
- url: jdbc:mysql://rm-2ze20ntn5y9ljsx147o.mysql.rds.aliyuncs.com:3306/scheduler_str?allowMultiQueries=true&serverTimezone=UTC&useUnicode=true&useSSL=false&characterEncoding=UTF-8
- username: root
- password: zVmW58LaAtjIKbb
- jackson:
- date-format: yyyy-MM-dd HH:mm:ss
- time-zone: Asia/Shanghai
- default-property-inclusion: non_null
-
- property-naming-strategy: com.fasterxml.jackson.databind.PropertyNamingStrategy.PascalCaseStrategy
-
-
- mapper:
-
- sort_properties_alphabetically: true
-
-
-
-
-
-
-
-
-
-
- mybatis:
- typeAliasesPackage: cn.sagacloud.server.datacenter.entities
|