mybatis 关联查询时,从表只返回第一条记录解决办法
如果两表联查,主表和明细表的主键都是id的话,明细表的多条只能查询出来第一条。
造成以上情况可能的原因:
1、级联查询的时候,主表和从表有一样的字段名的时候,在mysql上命令查询是没问题的。但在mybatis中主从表需要为相同字段名设置别名。设置了别名就OK了。
例子:
主表Standard, 从表StandEntity,均有名为id的字段
1 <resultMap id="StandardAndEntityResultMap" type="whu.edu.irlab.model.Standard" extends="BaseResultMap">
2 <collection property="standEntities" ofType="whu.edu.irlab.model.StandEntity">
3 (依据下面的select中更名的字段id别名se_id,在此将相同的字段名改为别名)
4 <id column="se_id" property="id" jdbcType="INTEGER" />
5 <result column="stand_id" property="standId" jdbcType="INTEGER" />
6 <result column="stand_name" property="standName" jdbcType="VARCHAR" />
7 <result column="entity_name" property="entityName" jdbcType="VARCHAR" />
8 </collection>
9 </resultMap>
10
11 <select id="findAllStandardAndEntity" resultMap="StandardAndEntityResultMap">
12 select
13 standard.*,
14 standard_entity.id se_id,(在此将两表中相同的字段名id改为别名se_id,对应的上面collection部分也需要更改)
15 standard_entity.stand_id,
16 standard_entity.stand_name,
17 standard_entity.entity_name
18 from
19 standard INNER JOIN standard_entity on standard.id = standard_entity.stand_id
20 </select>
2、一对多不能用Association,要用Collection。
根据经验,使用association这个元素很容易出错,建议在resultMap中先换一种写法,不要用association。修改测试一下,如果成功的话,就基本可以去顶是association的问题了,之后查一下association详细资料,应该能解决。如果不是association的问题,就调查一下配置文件等等,总能够解决的。
3、resultMap配置有问题
bean代码如下:
1 public class QueryVO {
2
3 private AppUser appuser;
4
5 private Tb tb;
6
7 public AppUser getAppuser() {
8 return appuser;
9 }
10
11 public void setAppuser(AppUser appuser) {
12 this.appuser = appuser;
13 }
14
15 public Tb getTb() {
16 return tb;
17 }
18
19 public void setTb(Tb tb) {
20 this.tb = tb;
21 }
22 }
mapper.xml配置:
1 <select id="getItemsList" parameterType="QueryVO" resultMap="items">
2 SELECT
3 xpro_sys_tb.*,
4 xpro_sys_app_user.*
5 FROM
6 xpro_sys_tb,
7 xpro_sys_app_user
8 WHERE xpro_sys_tb.author_id =
9 xpro_sys_app_user.USER_ID
10 <include refid="query_items_where"></include>
11 </select>
12
13 <resultMap type="QueryVO" id="items">
14 <association property="appuser" resultMap="appUser"></association>
15 <association property="tb" resultMap="tb"></association>
16 </resultMap>
以上代码导致的结果是查询出来的总是最后一条数据,类似后面数据覆盖了之前数据的现象。
发现问题的关键在于resultMap中如果不定义类似主键之类的能够区分每一条结果集的字段的话,会引起后面一条数据覆盖前面一条数据的现象。
最终将resultMap中添加id,并相应在bean中添加该字段,代码如下,问题解决。
1 public class QueryVO {
2
3 private Integer id;
4
5 private AppUser appuser;
6
7 private Tb tb;
8
9 public AppUser getAppuser() {
10 return appuser;
11 }
12
13 public void setAppuser(AppUser appuser) {
14 this.appuser = appuser;
15 }
16
17 public Tb getTb() {
18 return tb;
19 }
20
21 public void setTb(Tb tb) {
22 this.tb = tb;
23 }
24
25 public Integer getId() {
26 return id;
27 }
28
29 public void setId(Integer id) {
30 this.id = id;
31 }
32
33 @Override
34 public String toString() {
35 return "QueryVO [id=" + id + ", appuser=" + appuser + ", tb=" + tb + "]";
36 }
37 }
mapper.xml代码:
1 <select id="getItemsList" parameterType="QueryVO" resultMap="items">
2 SELECT
3 xpro_sys_tb.*,
4 xpro_sys_app_user.*
5 FROM
6 xpro_sys_tb,
7 xpro_sys_app_user
8 WHERE xpro_sys_tb.author_id =
9 xpro_sys_app_user.USER_ID
10 <include refid="query_items_where"></include>
11 </select>
12
13 <resultMap type="QueryVO" id="items">
14 <id property="id" column="id"/>
15 <association property="appuser" resultMap="appUser"></association>
16 <association property="tb" resultMap="tb"></association>
17 </resultMap>
mybatis 关联查询时,从表只返回第一条记录解决办法的更多相关文章
- [jnhs]id字段修改错误导致hibernate hql查询整表只返回第一条数据
调试发现,查询到的就是一条数据 hql语句执行结果 Hibernate: select ballmodel0_.ball_id as ball_id1_1_, ballmodel0_.color as ...
- 关于Delphi cxGrid主从表中从表只能编辑第一条记录的问题
在Delphi cxGrid主从表中从表只能编辑第一条记录,这个问题是由于设置主从关联字段错误造成的. 从表DBtableView2的keyfieldnames,DetailKeyFieldNames ...
- 160804、oracle查询:取出每组中的第一条记录
oracle查询:取出每组中的第一条记录按type字段分组,code排序,取出每组中的第一条记录 方法一: select type,min(code) from group_info group by ...
- mybatis关联查询,查询结果多条,却只返回一条记录
原因是:主表和子表的主键字段相同,可以使用别名!这是因为mybatis的内部实现机制决定的: MyBatis为了降低内存开销,采用ResultHandler逐行读取的JDBC ResultSet结果集 ...
- 问题解决 : MyBatis一对一查询时,打印结果只有一条数据
问题截图:修改后,结果返回条数正确 问题解决: 因为有重名的列,建议起个别名
- Flash的坑之ExternalInterface.call只返回null值的解决办法
flash坑太多了,要确保能有效的使用ExternalInterface.call调用js的话,需要两个条件: 1.allowScriptAccess="always" 2.id= ...
- 取得数据表中前N条记录,某列重复的话只取第一条记录
项目需要筛选出不重复数据,以前没有做过,第一反应就是利用distinct处理,但是弄了好久也没搞出来,大家有知道的望告知下. 这次筛选没有使用distinct ,是利用group by ,利用id为唯 ...
- 160805、oracle查询:取出每组中的第一条记录
在Java 9发布之前,我们来分享一些Java 8开发技巧 [以下为译文] 在使用JAVA 8进行开发多年后,结合个人使用IntelliJ IDEA的心得,我总结了以下几个JAVA8技巧供大家参考. ...
- 【ORACLE】SQL查询出每个组中的第一条记录
CREATE TABLE [TestTable] ( ) NOT NULL , ) NOT NULL , ) ))) GO ALTER TABLE [TestTable] ADD PRIMARY KE ...
随机推荐
- 【Java】基本数据类型以及其转换
整理了一下Java基本数据类型和面试可能涉及的知识. 字节数(byte) 位数(bit) 取值范围 整型 byte 1 8 -2^7 ~ 2^7 -1 short 2 16 ...
- oc字符串截取 数组字典运用
#define NSLog(FORMAT, ...) printf("%s\n", [[NSString stringWithFormat:FORMAT, ##__VA_ARGS_ ...
- redis 设置密码验证
1.找到配置文件:如/etc/redis/redis.conf 2.找到以下内容 # requirepass foobared 3.修改为(redispassword是密码) requirepass ...
- mysql主从复制及双主复制
之前做过一次在单台机器上的多实例的mysql,这次分开做,使用两台主机. 这里使用的主机地址分别为: MASTER:192.168.214.135 SLAVE : 192.168.214.128 这 ...
- pyhon之99乘法表
1.长方形完整格式 for i in range(1,10): for j in range(1,10): print("%d*%d" %(j,i),end=" &quo ...
- vue 网页文字中带#的话题颜色高亮
网页中显示文字时,带#开始和结束的文字蓝色高亮,就像微博话题一样效果如下 html <span v-html="parseComments('#吃货节#有什么好吃的')"&g ...
- 20181225 基于TCP/IP和基于UDP/IP的套接字编程
一.TCP/IP的套接字编程 服务器端代码: import socketserver = socket.socket() # 默认是基于TCP# 基于TCP的对象serve=socket.sock ...
- 684. Redundant Connection
https://leetcode.com/problems/redundant-connection/description/ Use map to do Union Find. class Solu ...
- stm32 flash和sram
FLASH是用来存储程序的,SRAM是用来存储程序运行中的中间变量
- Codeforces:68A-Irrational problem(暴力大法好)
A- Irrational problem p Time Limit: 2000MS Memory Limit: 262144K 64bit IO Format: %I64d& %I64 De ...