码迷,mamicode.com
首页 > 数据库 > 详细

mybatis使用中类属性名和数据库表字段名问题

时间:2016-12-13 16:12:11      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:create   数据库   mod   xml文件   映射   rom   mode   rtm   字段   

起初我以为上述二者必须一致,后来发现也是可以像Hibernate那样在xml文件中进行映射的。

<mapper namespace="com.tenghu.mybatis.model.xml.DepartmentMapper">  
      
    <!-- 配置映射字段 -->  
    <resultMap type="Department" id="tab_department">  
        <id property="ids" column="ids"/>  
        <result property="deName" column="de_name"/>  
        <result property="pIds" column="p_ids"/>  
        <result property="deChargePerson" column="de_charge_person"/>  
        <result property="createTime" column="create_time"/>  
    </resultMap>  
      
    <!-- 查询所有部门 -->  
    <select id="queryAllDepartment" resultMap="tab_department">  
        select * from tab_department  
    </select>  
</mapper>  

 

mybatis使用中类属性名和数据库表字段名问题

标签:create   数据库   mod   xml文件   映射   rom   mode   rtm   字段   

原文地址:http://www.cnblogs.com/alden-it/p/6170032.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!