spring.datasource.url=jdbc:mysql://localhost:3306/db01
spring.datasource.username=root
spring.datasource.password=123456
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
//自动更改数据库
spring.jpa.hibernate.ddl-auto=update
//格式化数据Sql方便阅读
spring.jpa.properties.hibernate.format_sql=true
//显示调用的数据sql
spring.jpa.show-sql=true
发表回复