mybatis association 嵌套collection select不执行
问题描述
mybatis association 嵌套collection select不执行
问题出现的环境背景及自己尝试过哪些方法
当collection放在userInfoMapper.xml可以正常执行
相关代码
<resultMap id="BaseResultMap"type="xxx">
<id column="id" property="id" />
<result column="user_id" property="userId" />
<result column="image" property="image" />
<result column="status" property="status" />
<association
select="com.test.user.mapper.UserInfoMapper.selectById"
column="user_id" property="userInfo" >
<collection property="tags" column="tags_id "
ofType="com.test.user.entity.Tag"
select="com.test.user.mapper.TagMapper.selectByIds">
</collection>
</association>
</resultMap>
你期待的结果是什么?实际看到的错误信息又是什么?
tags_id 在userInfo有数据collection 中selectByIds存在 但是collection中select不执行
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论