微前端架构如何改变企业的开发模式与效率提升
683
2022-10-08
hibernate中数据库表多对一的映射
1.项目示例如图:
2.studentClass.hbm.xml
3.student.hbm.xml
4.测试类:
package com.eduask.test; import java.util.Date; import java.util.List; import org.hibernate.Criteria; import org.hibernate.Query; import org.hibernate.Session; import org.hibernate.SessionFactory; import org.hibernate.Transaction; import org.junit.Before; import org.junit.Test; import com.eduask.pojo.Student; import com.eduask.pojo.StudentClass; import com.eduask.util.HibernateUtil; public class StudentTest { private SessionFactory sessionFactory;@Beforepublic void setUp() throws Exception {//使用hibernateUtil工具类来创建单例的sessionFactory 对象//再使用sessionFactory 对象来创建session//工具类提供一个创建session的方法sessionFactory=HibernateUtil.getSessionFactory();} //增加;@Testpublic void testInsert(){Session session=sessionFactory.openSession();Transaction tx=session.beginTransaction(); StudentClass sc=new StudentClass(); sc.setName("大数据0302"); session.save(sc); Student s=new Student(); s.setName("link"); s.setStudentClass(sc);session.save(s);tx.commit();session.close();} }
5.程序之后我们打开数据库:
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~