1234567891011121314151617181920 |
- server:
- port: 8888
- servlet:
- context-path: /
- spring:
- datasource:
- driver-class-name: com.mysql.jdbc.Driver
- name: MySQL
- url: jdbc:mysql://127.0.0.1:3306/base-in-back-end?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=UTF-8&useSSL=false
- username: root
- password: root
- mybatis-plus:
- global-config:
- db-config:
- select-strategy: not_empty
- configuration:
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|