首页 > 代码库 > mybatis使用中类属性名和数据库表字段名问题
mybatis使用中类属性名和数据库表字段名问题
起初我以为上述二者必须一致,后来发现也是可以像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使用中类属性名和数据库表字段名问题
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。