mysql 一对多映射_Hibernate一对多(One-to-Many)映射

一对多的映射可以使用一组Java集合不包含任何重复的元素来实现。我们已经看到了如何设置映射集合在Hibernate中,所以如果你已经学会了集合(Set)映射,那么所有设置可用于一对多的映射。

集合被映射到与映射表中元素,并java.util.HashSet中初始化。您可以使用Set集合在类中,有一个集合中不需要重复的元素。

定义RDBMS表:

考虑一个情况,我们需要员工记录存储在EMPLOYEE表,将有以下结构:

create table EMPLOYEE(id INT NOT NULL auto_increment,first_name VARCHAR(20)defaultNULL,last_name VARCHAR(20)defaultNULL,salary INTdefaultNULL,PRIMARY KEY(id));

此外,假设每个员工都可以有一个或多个与他/她相关的证书。因此,我们将存储证书的相关信息在一个单独的表,该表具有以下结构:

create table CERTIFICATE(id INT NOT NULL auto_increment,certificate_name VARCHAR(30)defaultNULL,employee_id INTdefaultNULL,PRIMARY KEY(id));

将有一个对多EMPLOYEE和证书对象之间的关系:

定义POJO类:

让我们实现POJO类员工将被用于保存EMPLOYEE表中的对象和有证书的集变量的集合。

importjava.util.*;publicclassEmployee{privateintid;privateStringfirstName;privateStringlastName;privateintsalary;privateSetcertificates;publicEmployee(){}publicEmployee(Stringfname,Stringlname,intsalary){this.firstName=fname;this.lastName=lname;this.salary=salary;}publicintgetId(){returnid;}publicvoidsetId(intid){this.id=id;}publicStringgetFirstName(){returnfirstName;}publicvoidsetFirstName(Stringfirst_name){this.firstName=first_name;}publicStringgetLastName(){returnlastName;}publicvoidsetLastName(Stringlast_name){this.lastName=last_name;}publicintgetSalary(){returnsalary;}publicvoidsetSalary(intsalary){this.salary=salary;}publicSetgetCertificates(){returncertificates;}publicvoidsetCertificates(Setcertificates){this.certificates=certificates;}}

现在让我们定义另一个POJO类对应的表的证书,这样的证书对象可以存储和检索到的证书表。这个类还应该同时实现了equals()和hashCode()方法,使Java可以判断任意两个元素/对象是否相同。

publicclassCertificate{privateintid;privateStringname;publicCertificate(){}publicCertificate(Stringname){this.name=name;}publicintgetId(){returnid;}publicvoidsetId(intid){this.id=id;}publicStringgetName(){returnname;}publicvoidsetName(Stringname){this.name=name;}publicbooleanequals(Objectobj){if(obj==null)returnfalse;if(!this.getClass().equals(obj.getClass()))returnfalse;Certificateobj2=(Certificate)obj;if((this.id==obj2.getId())&&(this.name.equals(obj2.getName()))){returntrue;}returnfalse;}publicinthashCode(){inttmp=0;tmp=(id+name).hashCode();returntmp;}}

定义Hibernate映射文件:

让我们指示Hibernate如何定义的类映射到数据库表的映射文件。

<?xml version="1.0"encoding="utf-8"?>/p>

"-//Hibernate/Hibernate Mapping DTD//EN"

"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">This class contains the employee detail.This class contains the certificate records.

应该保存的映射文件中的格式.hbm.xml。我们保存映射文件中的文件Employee.hbm.xml。你已经熟悉了大部分的映射细节,但让我们再次看看映射文件中的所有元素:

映射文档是具有为对应于每一个类包含2个元素的根元素的XML文档。

元素被用于定义数据库表从一个Java类特定的映射。 Java类名指定使用class元素的name属性和使用表属性数据库表名指定。

元素是可选元素,可以用来创建类的描述。

元素映射在类中的唯一ID属性到数据库表的主键。 id元素的name属性是指属性的类和column属性是指在数据库表中的列。 type属性保存了Hibernate映射类型,这种类型的映射将会从Java转换为SQL数据类型。

id元素内的元素被用来自动生成的主键值。将生成元素的class属性设置为原生让Hibernate拾取identity,sequence或者hilo中的算法来创建主键根据底层数据库的支持能力。

元素用于一个Java类的属性映射到数据库表中的列。元素的name属性是指属性的类和column属性是指在数据库表中的列。 type属性保存了Hibernate映射类型,这种类型的映射将会从Java转换为SQL数据类型。

元素设置证书和Employee类之间的关系。我们使用cascade属性中元素来告诉Hibernate来保存证书的对象,同时为Employee对象。 name属性被设置为在父类中定义的变量集,在我们的例子是证书。对于每一组变量,我们需要定义在映射文件中单独的一组元素。

元素是包含外键的父对象,即在证书表中的列。表EMPLOYEE。

元素表示一个Employee对象涉及到很多证书的对象。

创建应用程序类:

最后,我们将创建应用程序类的main()方法来运行应用程序。我们将使用这个应用程序,以节省一些员工连同记录证书,然后我们将应用上CRUD操作记录。

importjava.util.*;importorg.hibernate.HibernateException;importorg.hibernate.Session;importorg.hibernate.Transaction;importorg.hibernate.SessionFactory;importorg.hibernate.cfg.Configuration;publicclassManageEmployee{privatestaticSessionFactoryfactory;publicstaticvoidmain(String[]args){try{factory=newConfiguration().configure().buildSessionFactory();}catch(Throwableex){System.err.println("Failed to create sessionFactory object."+ex);thrownewExceptionInInitializerError(ex);}ManageEmployeeME=newManageEmployee();/* Let us have a set of certificates for the first employee */HashSetset1=newHashSet();set1.add(newCertificate("MCA"));set1.add(newCertificate("MBA"));set1.add(newCertificate("PMP"));/* Add employee records in the database */IntegerempID1=ME.addEmployee("Manoj","Kumar",4000,set1);/* Another set of certificates for the second employee */HashSetset2=newHashSet();set2.add(newCertificate("BCA"));set2.add(newCertificate("BA"));/* Add another employee record in the database */IntegerempID2=ME.addEmployee("Dilip","Kumar",3000,set2);/* List down all the employees */ME.listEmployees();/* Update employee's salary records */ME.updateEmployee(empID1,5000);/* Delete an employee from the database */ME.deleteEmployee(empID2);/* List down all the employees */ME.listEmployees();}/* Method to add an employee record in the database */publicIntegeraddEmployee(Stringfname,Stringlname,intsalary,Setcert){Sessionsession=factory.openSession();Transactiontx=null;IntegeremployeeID=null;try{tx=session.beginTransaction();Employeeemployee=newEmployee(fname,lname,salary);employee.setCertificates(cert);employeeID=(Integer)session.save(employee);tx.commit();}catch(HibernateExceptione){if(tx!=null)tx.rollback();e.printStackTrace();}finally{session.close();}returnemployeeID;}/* Method to list all the employees detail */publicvoidlistEmployees(){Sessionsession=factory.openSession();Transactiontx=null;try{tx=session.beginTransaction();Listemployees=session.createQuery("FROM Employee").list();for(Iteratoriterator1=employees.iterator();iterator1.hasNext();){Employeeemployee=(Employee)iterator1.next();System.out.print("First Name: "+employee.getFirstName());System.out.print(" Last Name: "+employee.getLastName());System.out.println(" Salary: "+employee.getSalary());Setcertificates=employee.getCertificates();for(Iteratoriterator2=certificates.iterator();iterator2.hasNext();){CertificatecertName=(Certificate)iterator2.next();System.out.println("Certificate: "+certName.getName());}}tx.commit();}catch(HibernateExceptione){if(tx!=null)tx.rollback();e.printStackTrace();}finally{session.close();}}/* Method to update salary for an employee */publicvoidupdateEmployee(IntegerEmployeeID,intsalary){Sessionsession=factory.openSession();Transactiontx=null;try{tx=session.beginTransaction();Employeeemployee=(Employee)session.get(Employee.class,EmployeeID);employee.setSalary(salary);session.update(employee);tx.commit();}catch(HibernateExceptione){if(tx!=null)tx.rollback();e.printStackTrace();}finally{session.close();}}/* Method to delete an employee from the records */publicvoiddeleteEmployee(IntegerEmployeeID){Sessionsession=factory.openSession();Transactiontx=null;try{tx=session.beginTransaction();Employeeemployee=(Employee)session.get(Employee.class,EmployeeID);session.delete(employee);tx.commit();}catch(HibernateExceptione){if(tx!=null)tx.rollback();e.printStackTrace();}finally{session.close();}}}

编译和执行:

下面是步骤来编译并运行上述应用程序。请确保您已在进行的编译和执行之前,适当地设置PATH和CLASSPATH。

创建hibernate.cfg.xml配置文件。

创建Employee.hbm.xml映射文件,如上图所示。

创建Employee.java源文件,如上图所示,并编译它。

创建Certificate.java源文件,如上图所示,并编译它。

创建ManageEmployee.java源文件,如上图所示,并编译它。

执行ManageEmployee二进制文件来运行程序。

在屏幕上获得以下结果,并同时记录会在员工和证书表被创建。

$javaManageEmployee.......VARIOUS LOG MESSAGES WILL DISPLAY HERE........FirstName:ManojLastName:KumarSalary:4000Certificate:MBACertificate:PMPCertificate:MCAFirstName:DilipLastName:KumarSalary:3000Certificate:BCACertificate:BAFirstName:ManojLastName:KumarSalary:5000Certificate:MBACertificate:PMPCertificate:MCA

如果检查员工和证书表,就应该记录下了:

mysql>select*fromemployee;+----+------------+-----------+--------+|id|first_name|last_name|salary|+----+------------+-----------+--------+|1|Manoj|Kumar|5000|+----+------------+-----------+--------+1rowinset(0.00sec)mysql>select*fromcertificate;+----+------------------+-------------+|id|certificate_name|employee_id|+----+------------------+-------------+|1|MBA|1||2|PMP|1||3|MCA|1|+----+------------------+-------------+3rowsinset(0.00sec)mysql>

¥ 我要打赏

纠错/补充

收藏

加QQ群啦,易百教程官方技术学习群

注意:建议每个人选自己的技术方向加群,同一个QQ最多限加 3 个群。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Hibernate是一个Java持久化框架,它能够将Java对象映射到数据库中的表格,同时支持各种关系数据库,如MySQL、Oracle等。在Hibernate中,对于一对一、一对多和多对多的关系,我们可以通过以下方式进行映射。 一对一关系:在Hibernate中,可以通过主键关联和外键关联来实现一对一关系的映射。主键关联是指两个实体之间的关联通过主键来进行,可以使用@PrimaryKeyJoinColumn注解将两个实体关联起来。外键关联是指通过一个实体引用另一个实体的主键作为外键,使用@JoinColumn注解来指定外键属性。 一对多关系:在Hibernate中,一对多关系通常通过外键关联来实现。在一的一方,使用@OneToMany注解来定义一对多关系,同时使用@JoinColumn注解指定外键属性。在多的一方,使用@ManyToOne注解来定义多对一关系,并使用@JoinColumn注解指定外键属性。 多对多关系:在Hibernate中,多对多关系通常通过中间表来实现。在多对多的两个实体中,使用@ManyToMany注解来定义多对多关系。同时,需要在中间表中创建两个外键,分别与两个实体的主键关联,并使用@JoinTable注解来指定中间表的表名和两个外键的列名。 总结:通过Hibernate的注解方式,可以方便地实现一对一、一对多和多对多关系的映射。通过合理地使用注解,可以减少编写映射文件的工作量,提高开发效率。同时,Hibernate还提供了在运行时自动生成表结构的功能,可以根据Java实体类来动态创建或更新对应的数据库表格,从而提高系统的可维护性和灵活性。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值