zoukankan      html  css  js  c++  java
  • hibernate 组件映射

    注解方式:

     

    import javax.persistence.Embedded;
    import javax.persistence.Entity;
    import javax.persistence.GeneratedValue;
    import javax.persistence.Id;
    import javax.persistence.JoinColumn;
    import javax.persistence.JoinColumns;
    import javax.persistence.OneToOne;

    @Entity
    public class Husband {
        private int id;
        private String name;
        private Wife wife;
        @Id
        @GeneratedValue
        public int getId() {
            return id;
        }
       
        public String getName() {
            return name;
        }
        @Embedded
        public Wife getWife() {
            return wife;
        }
        public void setId(int id) {
            this.id = id;
        }
        public void setName(String name) {
            this.name = name;
        }
        public void setWife(Wife wife) {
            this.wife = wife;
        }
    }

    package com.bjsxt.hibernate;

     

    public class Wife {
       
        private String wifeName;
        private int age;
       
        public int getAge() {
            return age;
        }
        public void setAge(int age) {
            this.age = age;
        }
           
        public String getWifeName() {
            return wifeName;
        }
        public void setWifeName(String name) {
            this.wifeName = name;
        }
       
    }

     

     

    xml方式:

    Husband.hbm.xml

     

    <?xml version="1.0"?>
    <!DOCTYPE hibernate-mapping PUBLIC
            "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
            "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">

    <hibernate-mapping>
        <class name="com.bjsxt.hibernate.Husband" >
            <id name="id">
                <generator class="native"></generator>
            </id>
           
            <property name="name"></property>
            <component name="wife">
                <property name="wifeName"></property>
                <property name="age"></property>
            </component>
        </class>
       
    </hibernate-mapping>

  • 相关阅读:
    Effective JavaScript: 编写高质量JavaScript代码的68个有效方法(目录)
    第 13 条:使用立即调用的函数表达式创建局部作用域
    第11条:javascript闭包(Effective JavaScript读书笔记)
    .net各类视频教程
    IIS7视频教程
    快速排序
    冒泡排序
    python骚气的写法:b = lambda i, x: (tf.compat.v1.Print(i + 1, [i]), tf.compat.v1.Print(x + 1, [i], "x:"))
    服务器要放到水下
    keras包含各种内置层
  • 原文地址:https://www.cnblogs.com/flying607/p/3478216.html
Copyright © 2011-2022 走看看