#jpa配置文件
spring:
#数据源设置
datasource:
type: com.alibaba.druid.pool.DruidDataSource #使用第三方要设置类型
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://localhost:3306/test?serverTimezone=UTC&useUnicode=true&characterEncoding=utf8
username: root
password: root



