zoukankan      html  css  js  c++  java
  • hibernate笔记--组件映射方法

      假设我们需要保存学生student的信息,student中有一个address属性,我们知道像这种信息其值可能会有多个,就像一个人会有两个以上的手机号,这种情况在hibernate中应该这样配置:

    新建一个Address类,我们假设每个学生最多能保存3个地址:

    public class Address {
    
        private String addr1;
        private String addr2;
        private String addr3;
           
        //get/set方法省略          
    }

    新建student实体类:

    public class Student {
    
        private int id;
        private String name;
        private String sex;
        private Address address;
        //get/set方法省略
    }

    在当前包下新建一个Student.hbm.xml:

    <?xml version="1.0"?>
    <!DOCTYPE hibernate-mapping PUBLIC 
        "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
        "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
    
    <hibernate-mapping package="com.wang.pojo">
        <class name="Student" >
        <id    name="id">
            <generator class="native"></generator>
        </id>
        
        <property name="name"></property>
        <property name="sex"></property>
        <component name="address" class="Address" >
            <property name="addr1"></property>
            <property name="addr2"></property>
            <property name="addr3"></property>
        </component>
        </class>
    </hibernate-mapping>

    新建一个测试类,来自动生成数据库的表,以及向数据库表中添加一条数据:

        @Test
        public void testCreateDB() {
            Configuration cfg = new Configuration().configure();
            SchemaExport se = new SchemaExport(cfg);
            // 第一个参数是否生成ddl脚本 第二个参数是否执行到数据库
            se.create(true, true);
        }
    
        @Test
        public void testSave() {
            Session session = HibernateUtil.getSession();
            Transaction tx = session.beginTransaction();
            Student s = new Student("张三", "男", new Address("山东省", "湖北省", "浙江省"));
            session.persist(s);
            tx.commit();
            session.close();
        }
  • 相关阅读:
    JAVA语言中冒号的用法
    Tamper Data 安装与使用
    HTTP协议缓存策略深入详解之ETAG妙用
    HTTP协议
    HTTP协议----ETag
    super 使用以及原理
    __slots__用法以及优化
    归并排序详解(Python | Java实现)
    周刷题第二期总结(Longest Substring Without Repeating Characters and Median of Two Sorted Arrays)
    周刷题第一期总结(two sum and two numbers)
  • 原文地址:https://www.cnblogs.com/fingerboy/p/5236212.html
Copyright © 2011-2022 走看看