mybatis问题求助啊,现在有员工表和部门表,员工表里有部门id,使用mybatis,实体类是这样的

如图,实体类关系是这样的,使用mybatis查询员工的时候怎么才能把部门表的属性给查出来放到department里呢?... 如图,实体类关系是这样的,使用mybatis查询员工的时候怎么才能把部门表的属性给查出来放到department里呢? 展开
 我来答
匿名用户
2013-01-22
展开全部
抄一个来参考一下

<!-- 来自BlogMapper.xml文件 -->
<resultMap type="Blog" id="BlogResult">
<id column="id" property="id"/>
<collection property="comments" select="selectCommentsByBlog" column="id" ofType="Comment"></collection>
</resultMap>

<resultMap type="Comment" id="CommentResult">
  <association property="blog" javaType="Blog" column="blog" select="selectBlog"/>
</resultMap>

<select id="selectBlog" parameterType="int" resultMap="BlogResult">
select * from t_blog where id = #{id}
</select>

<!-- 通过Blog来查找Comment -->
<select id="selectCommentsByBlog" parameterType="int" resultMap="CommentResult">
select * from t_Comment where blog = #{blogId}
</select>
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式