其他分享
首页 > 其他分享> > Springboot2.2.2 jpa 没有自动生成表

Springboot2.2.2 jpa 没有自动生成表

作者:互联网

环境 idea2019.2  jdk1.8 mysql5.7

项目结构   这里使用yml文件  

 

 以下是错误yml  

 

 正确的yml     jpa的位置要写正确   yml注意层级关系  推荐springboot jpa文档  https://docs.spring.io/spring-data/jpa/docs/2.2.3.RELEASE/reference/html/#reference 

 

spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://localhost:3306/jpa?useSSL=true&serverTimezone=UTC&characterEncoding=UTF8
    data-username: root
    data-password: root
    #jpa配置  更新或自动生成表  控制台打印sql
  jpa:
    database: mysql
    show-sql: true
    hibernate:
      ddl-auto: update

重新run 启动类    出现创建表的语句 就成功了

标签:jdbc,Springboot2.2,jpa,spring,生成,mysql,data,yml
来源: https://www.cnblogs.com/wf-zhang/p/12165991.html