继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

使用idea根据数据库表生成java model类,基于hibernate

千岁不倒翁
关注TA
已关注
手记 362
粉丝 60
获赞 387

很多场景下我们需要根据已有的数据库表,生成对应的java bean,而且还希望生成的java类格式正确、命名规范。

使用idea可以轻松的完成这个功能。

举例,我新建一个springboot项目,勾选mysql、jpa即可,在idea找到Database界面,新建Data source——MySQL,填写数据连接信息后即可。



此时就可以生成简单的pojo类了,注意,此时还没有使用hibernate呢,就是idea的这个Database功能就可以生成pojo类了,只不过无格式。在界面上数据库名右键,出来下面的界面。


点Generate POJOs.clj即可


可以看到生成类很粗糙,就是把列名复制,完全照搬,我们希望的更格式化的pojo类,所以我们要使用hibernate来反向生成。

在resource文件夹下创建hibernate.cfg.xml文件


  1. <?xml version="1.0" encoding="UTF-8"?>  

  2. <hibernate-configuration>  

  3.     <session-factory>  

  4.         <!-- Database connection settings -->  

  5.         <property name = "connection.driver_class">com.mysql.jdbc.Driver</property>  

  6.         <property name = "connection.url">jdbc:mysql://localhost/test</property>  

  7.         <property name = "connection.username">root</property>  

  8.         <property name = "connection.password">root</property>  

  9.         <!-- JDBC connection pool (use the built-in) -->  

  10.         <!-- 

  11.         <property name="connection.pool_size">1</property> 

  12.          -->  

  13.         <!-- SQL dialect -->  

  14.         <property name = "dialect">org.hibernate.dialect.MySQLDialect</property>  

  15.         <!-- Enable Hibernate's automatic session context management -->  

  16.         <property name = "current_session_context_class">thread</property>  

  17.   

  18.         <!-- Echo all executed SQL to stdout -->  

  19.         <property name = "show_sql">true</property>  

  20.         <!-- Drop and re-create the database schema on startup -->  

  21.         <!-- 

  22.         <property name="hbm2ddl.auto">update</property> 

  23.         -->  

  24.   

  25.     </session-factory>  

  26. </hibernate-configuration>  

配置基本信息,此时idea会有提醒


我们点击箭头处,或者在project structure里如下图,添加hibernate configuration

只有配置了hibernate,才能使用hibernate的反向生成功能。

然后点击View-Tool Windows-Persistence,注意,如果没有配置hibernate的话,是没有Persistence这个选项的。



然后如下图操作,右键点击后会弹出下图界面。




然后就可以设置要生成的类所在的包名,前缀、后缀,还可以修改pojo类的类型,譬如success字段可以修改为boolean,最下面勾选JPA注解。点击OK就行了。


  1. package com.tianyalei.hibernate;  

  2.   

  3. import javax.persistence.*;  

  4. import java.sql.Timestamp;  

  5.   

  6. /** 

  7.  * Created by wuweifeng on 2017/10/11. 

  8.  */  

  9. @Entity  

  10. @Table(name = "user", schema = "test", catalog = "")  

  11. public class UserEntity {  

  12.     private long id;  

  13.     private int credits;  

  14.     private String lastIp;  

  15.     private Timestamp lastVisit;  

  16.     private String password;  

  17.     private int userId;  

  18.     private String userName;  

  19.     private String name;  

  20.     private boolean success;  

  21.   

  22.     @Id  

  23.     @Column(name = "id")  

  24.     public long getId() {  

  25.         return id;  

  26.     }  

  27.   

  28.     public void setId(long id) {  

  29.         this.id = id;  

  30.     }  

  31.   

  32.     @Basic  

  33.     @Column(name = "credits")  

  34.     public int getCredits() {  

  35.         return credits;  

  36.     }  

  37.   

  38.     public void setCredits(int credits) {  

  39.         this.credits = credits;  

  40.     }  

  41.   

  42.     @Basic  

  43.     @Column(name = "last_ip")  

  44.     public String getLastIp() {  

  45.         return lastIp;  

  46.     }  

  47.   

  48.     public void setLastIp(String lastIp) {  

  49.         this.lastIp = lastIp;  

  50.     }  

  51.   

  52.     @Basic  

  53.     @Column(name = "last_visit")  

  54.     public Timestamp getLastVisit() {  

  55.         return lastVisit;  

  56.     }  

  57.   

  58.     public void setLastVisit(Timestamp lastVisit) {  

  59.         this.lastVisit = lastVisit;  

  60.     }  

  61.   

  62.     @Basic  

  63.     @Column(name = "password")  

  64.     public String getPassword() {  

  65.         return password;  

  66.     }  

  67.   

  68.     public void setPassword(String password) {  

  69.         this.password = password;  

  70.     }  

  71.   

  72.     @Basic  

  73.     @Column(name = "user_id")  

  74.     public int getUserId() {  

  75.         return userId;  

  76.     }  

  77.   

  78.     public void setUserId(int userId) {  

  79.         this.userId = userId;  

  80.     }  

  81.   

  82.     @Basic  

  83.     @Column(name = "user_name")  

  84.     public String getUserName() {  

  85.         return userName;  

  86.     }  

  87.   

  88.     public void setUserName(String userName) {  

  89.         this.userName = userName;  

  90.     }  

  91.   

  92.     @Basic  

  93.     @Column(name = "name")  

  94.     public String getName() {  

  95.         return name;  

  96.     }  

  97.   

  98.     public void setName(String name) {  

  99.         this.name = name;  

  100.     }  

  101.   

  102.     @Basic  

  103.     @Column(name = "success")  

  104.     public boolean isSuccess() {  

  105.         return success;  

  106.     }  

  107.   

  108.     public void setSuccess(boolean success) {  

  109.         this.success = success;  

  110.     }  

  111.   

  112.     @Override  

  113.     public boolean equals(Object o) {  

  114.         if (this == o) return true;  

  115.         if (o == null || getClass() != o.getClass()) return false;  

  116.   

  117.         UserEntity that = (UserEntity) o;  

  118.   

  119.         if (id != that.id) return false;  

  120.         if (credits != that.credits) return false;  

  121.         if (userId != that.userId) return false;  

  122.         if (success != that.success) return false;  

  123.         if (lastIp != null ? !lastIp.equals(that.lastIp) : that.lastIp != null) return false;  

  124.         if (lastVisit != null ? !lastVisit.equals(that.lastVisit) : that.lastVisit != null) return false;  

  125.         if (password != null ? !password.equals(that.password) : that.password != null) return false;  

  126.         if (userName != null ? !userName.equals(that.userName) : that.userName != null) return false;  

  127.         if (name != null ? !name.equals(that.name) : that.name != null) return false;  

  128.   

  129.         return true;  

  130.     }  

  131.   

  132.     @Override  

  133.     public int hashCode() {  

  134.         int result = (int) (id ^ (id >>> 32));  

  135.         result = 31 * result + credits;  

  136.         result = 31 * result + (lastIp != null ? lastIp.hashCode() : 0);  

  137.         result = 31 * result + (lastVisit != null ? lastVisit.hashCode() : 0);  

  138.         result = 31 * result + (password != null ? password.hashCode() : 0);  

  139.         result = 31 * result + userId;  

  140.         result = 31 * result + (userName != null ? userName.hashCode() : 0);  

  141.         result = 31 * result + (name != null ? name.hashCode() : 0);  

  142.         result = 31 * result + (success ? 1 : 0);  

  143.         return result;  

  144.     }  

  145. }  


可以看到这个就是生成的类,注解很完整,驼峰式命名,有特殊情况的话只需稍微修改就可以直接来用了。譬如把索引注解也加上去。

原文出处

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP