1spring.datasource.url= jdbc:mysql://localhost:3306/testdb?useSSL=false
2spring.datasource.username= root
3spring.datasource.password= 123456
4
5spring.jpa.properties.hibernate.dialect= org.hibernate.dialect.MySQL5InnoDBDialect
6
7# Hibernate ddl auto (create, create-drop, validate, update)
8spring.jpa.hibernate.ddl-auto= update
9