ResultMap结果集映射

Posted 小布丁value

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ResultMap结果集映射相关的知识,希望对你有一定的参考价值。

ResultMap结果集映射

1.解决属性名和字段名不一致的问题



测试


为什么?

解决方法,起别名

<resultMap id="getUserByID" type="user">
    <result column="id" property="id"/>
    <result column="name" property="name"/>
    <result column="pwd" property="password"/>
</resultMap>

2.resultmap和resultType的区别

以上是关于ResultMap结果集映射的主要内容,如果未能解决你的问题,请参考以下文章