springboot整合hibernate,根据数据库自动生成映射文件

流程

1.添加依赖


            org.springframework.boot
            spring-boot-starter-data-jpa

2.数据库建表
3.点击idea右侧Database -> + ,选择数据源MySQL。springboot整合hibernate,根据数据库自动生成映射文件_第1张图片

4.修改name属性,选择数据库驱动Driver,(若mysql为高版本则选择Mysql for 5.1,而且配置文件application.properties处的driver要改为com.mysql.cj.jdbc.Driver),输入信息后测试连接。springboot整合hibernate,根据数据库自动生成映射文件_第2张图片

5.连接成功后,点击File -> Project Structure -> Modules -> + -> Hibernate -> + -> hibernate.cfg.xml。
springboot整合hibernate,根据数据库自动生成映射文件_第3张图片

6.成功后idea左下侧导航栏会多了个Persistence,
springboot整合hibernate,根据数据库自动生成映射文件_第4张图片

选择数据源和生成entity的路径,下面的表全选,复选框按照下面来勾,点击ok。
springboot整合hibernate,根据数据库自动生成映射文件_第5张图片

你可能感兴趣的:(springboot整合hibernate,根据数据库自动生成映射文件)