1234567891011121314151617181920 |
- server:
- port: 8011
- spring:
- datasource:
- driver-class-name: com.mysql.jdbc.Driver
- ---
- spring:
- profiles: devtest
- datasource:
- url: jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf-8&autoReconnect=true
- username: root
- password: root
- type: com.alibaba.druid.pool.DruidDataSource
- jpa:
- hibernate:
- ddl-auto: update
- show-sql: true
|