posts - 325,  comments - 25,  trackbacks - 0

          1.數據表:
          orders:訂單表 customer:客戶表
          orders:
          id  int(4)    <pk>
          orderno  varchar(20)
          moeny decimal(10,2)
          customer_id int(4) <fk>

          customer:
          id int(4) <pk>
          name varchar(20)
          phone varchar(20)

          2.pojo類
          public class Customer implements Serilizable{
              private Integer id;
              private String name;
              private String phone;
              public Customer(){
              }
          }
          public class Orders implements Serilizable{
              private Integer id;
              private String orderno;
              private Double moeny;
              private Customer customer;
              public Orders(){
              }
          }

          3.hbm.xml
          Orders.hbm.xml
          <hibernate-mapping package="com.lhb.vo">
              <class name="Orders" table="orders">
                  <id name="id" column="id" type="integer">
                      <generator class="native"/>
                  </id>
                   <property name="moeny" column="moeny" type="double"/>
                  <property name="orderno" column="orderno" type="string"/>
                  <many-to-one name="customer_id" class="com.lhb.Customer" lazy="false" not-null="true"/>
              </class>
          </hibernate-mapping>
          Customer.hbm.xml

          <hibernate-mapping package="com.lhb.vo">
             <class name="Customer" table="customer">
                  <id name="id" column="id" type="integer">
                          <generator class="native"/>
                  </id>
                  <property name="name" column="name" type="string"/>
                  <proerty name="phone" column="phone" type="string"/>
              </class>
          </hibernate-mapping>

           

          posted on 2008-05-25 16:52 長春語林科技 閱讀(181) 評論(0)  編輯  收藏 所屬分類: hibernate
          <2008年5月>
          27282930123
          45678910
          11121314151617
          18192021222324
          25262728293031
          1234567

           

          長春語林科技歡迎您!

          常用鏈接

          留言簿(6)

          隨筆分類

          隨筆檔案

          文章分類

          文章檔案

          相冊

          收藏夾

          搜索

          •  

          最新評論

          閱讀排行榜

          評論排行榜

          主站蜘蛛池模板: 克拉玛依市| 东乡族自治县| 海门市| 崇礼县| 怀柔区| 宝兴县| 呼玛县| 林周县| 赞皇县| 广灵县| 秦皇岛市| 霍林郭勒市| 大新县| 海盐县| 松原市| 厦门市| 肇源县| 贡山| 体育| 巫山县| 长垣县| 永和县| 大关县| 灯塔市| 安康市| 瓦房店市| 宁强县| 牡丹江市| 通渭县| 滁州市| 长葛市| 紫云| 江山市| 恩平市| 镇坪县| 普定县| 游戏| 资阳市| 长垣县| 沁源县| 邢台县|