springboot mysql jpa 配置 application.yml
server:
port: 8000
spring:
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: "jdbc:mysql://127.0.0.1:3306/db_example?useUnicode=true&characterEncoding=utf8"
username: root
password: 123456
jpa:
database: MySQL
show-sql: true # 看见SQL语句 true:控制台看见 false:控制台直接显示数据
generate-ddl: true # 自动创建数据库表 true :有的话删除创建 false: 有的话直接使用
page:
rows: 50