mybatis 解决属性名和字段名不一致的问题
2022/9/12 23:23:09
本文主要是介绍mybatis 解决属性名和字段名不一致的问题,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1.问题:
数据库字段和实体类字段名称不同,导致有些字段无法映射:User{id=1, name='zsq', password='null'}
select * from `user` where id = #{uid} select id,name,psw from `user` where id = #{uid}
解决办法:给对应字段添加别名
<select id="getOneUserById" parameterType="int" resultType="User"> select id,name,pws as password from `user` where id = #{uid} </select>
User{id=1, name='zsq', password='123456'}
2. 结果映射 resultMap
-
resultMap
元素是 MyBatis 中最重要最强大的元素。
<resultMap id="userResultMap" type="user"> <!--column:对应数据库字段名称,property:对应实体类字段名称--> <id column="id" property="id"/> <result column="name" property="name"/> <result column="pws" property="password"/> </resultMap> <select id="getOneUserById" parameterType="int" resultMap="userResultMap"> select * from `user` where id = #{uid} </select>
User{id=1, name='zsq', password='123456'}
这篇关于mybatis 解决属性名和字段名不一致的问题的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-27JavaScript面试真题详解与解答
- 2024-12-27掌握JavaScript大厂面试真题:新手入门指南
- 2024-12-27JavaScript 大厂面试真题详解与解析
- 2024-12-26网络攻防资料入门教程
- 2024-12-26SQL注入资料详解:入门必读教程
- 2024-12-26初学者指南:数据库服务漏洞项目实战
- 2024-12-26网络安全项目实战:新手入门指南
- 2024-12-26网络攻防项目实战入门教程
- 2024-12-26信息安全项目实战:从入门到初步应用
- 2024-12-26SQL注入项目实战:初学者指南