mybatis 在mapper中实现一个查询,结果对象的一个属性是自定义类,如何写resultMap,和sql语句
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis 在mapper中实现一个查询,结果对象的一个属性是自定义类,如何写resultMap,和sql语句相关的知识,希望对你有一定的参考价值。
我自己写的始终报错,类1 hc_cust(private Integer custid;private Integer custtype;private String custname;private String custcontacts;private String custphone;private String custmobilephone;)类2 hc_rv(private Integer rvid;private Integer rveoid;private String rvdtest;private Hc_cust rvcustid;private String rvcarplate;private String rvcartypename;private Integer rvstatus;)
要查询 类2,
我的mapper中是这么写的:
<resultMap type="com.lb.entity.Hc_rv" id="hc_rvResultMap">
<id property="rvid" column="rvid"/>
<result property="rveoid" column="rveoid"/>
<result property="rvdtest" column="rvdtest"/>
<result property="rvcarplate" column="rvcarplate"/>
<result property="rvcartypename" column="rvcartypename"/>
<result property="rvstatus" column="rvstatus"/>
<association property="rvcustid" javaType="com.lb.entity.Hc_cust">
<id property="custid" column="custid" />
<result property="custtype" column="custtype"/>
<result property="custname" column="custname"/>
<result property="custcontacts" column="custcontacts"/>
<result property="custphone" column="custphone"/>
<result property="custmobilephone" column="custmobilephone"/>
</association>
</resultMap>
<select id="queryHc_rvById" paramterType="Integer" resultType="hc_rvResultMap">
select custid, custtype, custname, custcontacts,custphone,custmobilephone,
rvid, rveoid,rvdtest, rvcustid,rvcarplate, rvcartypename,rvstatus
from hc_rv left outer join hc_cust on rvcustid=custid where rvid=#rvid
</select>
在前面定义别名,后面可以使用了。追问
我知道是哪错了,不是别名 ,谢谢
参考技术B resultType="hc_rvResultMap">应为
resultMap="hc_rvResultMap">本回答被提问者采纳
MyBatis之Mapper XML 文件详解-自动映射查询结果
正如你在前面一节看到的,在简单的场景下,MyBatis可以替你自动映射查询结果。 如果遇到复杂的场景,你需要构建一个result map。 但是在本节你将看到,你也可以混合使用这两种策略。 让我们到深一点的层面上看看自动映射是怎样工作的。
当自动映射查询结果时,MyBatis会获取sql返回的列名并在java类中查找相同名字的属性(忽略大小写)。 这意味着如果Mybatis发现了ID列和id属性,Mybatis会将ID的值赋给id。
通常数据库列使用大写单词命名,单词间用下划线分隔;而java属性一般遵循驼峰命名法。 为了在这两种命名方式之间启用自动映射,需要将 mapUnderscoreToCamelCase设置为true。
自动映射甚至在特定的result map下也能工作。在这种情况下,对于每一个result map,所有的ResultSet提供的列, 如果没有被手工映射,则将被自动映射。自动映射处理完毕后手工映射才会被处理。 在接下来的例子中, id 和 userName列将被自动映射, hashed_password 列将根据配置映射。
<select id="selectUsers" resultMap="userResultMap">
select
user_id as "id",
user_name as "userName",
hashed_password
from some_table
where id = #{id}
</select>
<resultMap id="userResultMap" type="User">
<result property="password" column="hashed_password"/>
</resultMap>
有三种自动映射等级:
NONE - 禁用自动映射。仅设置手动映射属性。
PARTIAL - 将自动映射结果除了那些有内部定义内嵌结果映射的(joins).
FULL - 自动映射所有。
默认值是PARTIAL,这是有原因的。当使用FULL时,自动映射会在处理join结果时执行,并且join取得若干相同行的不同实体数据,因此这可能导致非预期的映射。下面的例子将展示这种风险:
<select id="selectBlog" resultMap="blogResult">
select
B.id,
B.title,
A.username,
from Blog B left outer join Author A on B.author_id = A.id
where B.id = #{id}
</select>
<resultMap id="blogResult" type="Blog">
<association property="author" resultMap="authorResult"/>
</resultMap>
<resultMap id="authorResult" type="Author">
<result property="username" column="author_username"/>
</resultMap>
在结果中Blog和Author均将自动映射。但是注意Author有一个id属性,在ResultSet中有一个列名为id, 所以Author的id将被填充为Blog的id,这不是你所期待的。所以需要谨慎使用FULL。
通过添加autoMapping属性可以忽略自动映射等级配置,你可以启用或者禁用自动映射指定的ResultMap。
<resultMap id="userResultMap" type="User" autoMapping="false">
<result property="password" column="hashed_password"/>
</resultMap>
关注微信公众号:IT哈哈(it_haha),学习更多内容。
以上是关于mybatis 在mapper中实现一个查询,结果对象的一个属性是自定义类,如何写resultMap,和sql语句的主要内容,如果未能解决你的问题,请参考以下文章
MyBatis之Mapper XML 文件详解-自动映射查询结果