• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

Hibernate的特点思考

发布: 2008-4-28 10:59 | 作者: 不详 | 来源: www.matrix.org.cn | 查看: 139次 | 进入软件测试论坛讨论

领测软件测试网

   /*
     带xml
     */


    /*    sale_orders销售订单表    sale_order_details销售订单细表    products商品表    product_catalogs商品类别表    从sql中就可以分析出    id是主鍵    sale_order_details.sale_order_id===>sale_orders.id    sale_order_details.product_catalog_id==>product_catalogs.id    sale_order_details.product_id==>products.id     */    String []sqls=new String []{        " select id, total_sum, memo, state, modify_date, creator, checker from sale_orders ",        " select id, sale_order_id, product_id, product_name, product_catalog_id, model, product_unit, product_amount, product_price, product_sum, memo from sale_order_details ",        " select id, name, catalog, model, price, unit, memo, createtime, state, code, productno from products ",        " select id, name, memo from product_catalogs"    };    /*<?xml version="1.0"?><MapObject><!--类似hibernate的映射,但是更容易理解,而且可以省略字段映射-->    <Object tablename="sale_orders" class="org.test.pojo.SaleOrder">        <OneToMany tablename="sale_order_details" class="org.test.pojo.SaleOrderDetail">        <!--主细表映射-->            <ParentKey>id</ParentKey>            <ChildKey>id</ChildKey>        </OneToMany>        <!--字段映射可选,一般是相同或根据ROR规则-->        <FieldMap>可选...</FieldMap>    </Object>    <Object tablename="sale_order_details" class="org.test.pojo.SaleOrderDetail">        <!-- 附加代码表映射1对1关系 -->        <OneToOne tablename="products" class="org.test.pojo.Product">            <ParentKey tablename="sale_order_details">product_id</ParentKey>            <ChildKey tablename="products">id</ChildKey>        </OneToMany>        <FieldMap>可选...</FieldMap>    </Object>    <Object tablename="sale_order_details" class="org.test.pojo.SaleOrderDetail">        <OneToOne tablename="product_catalogs" class="org.test.pojo.ProductCatalog">            <ParentKey tablename="sale_order_details">product_catalog_id</ParentKey>            <ChildKey tablename="product_catalogs">id</ChildKey>        </OneToMany>        <FieldMap>可选...</FieldMap>    </Object>    <Object tablename="product_catalogs" class="org.test.pojo.ProductCatalog">        <FieldMap>可选...</FieldMap>    </Object></MapObject>     */    String xml="...";    //带xml映射    List l=SQLMapObjects(conn,sqls,xml);    /*    l的结构:    sale_orders[]        |-----sale_order_details[](sale_order_details.sale_order_id===>sale_orders.id)                |-----products[](sale_order_details.product_id==>products.id)                |-----product_catalogs[](sale_order_details.product_catalog_id==>product_catalogs.id)                     */


延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/

53/5<12345>

关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网