目前有1个Blog类,里面除了自己的字段还有一个存储Post类的集合怎么将Post中的数据存储到Blog中的List<Post>中去
2 回答
已采纳
丶包菜
TA贡献158条经验 获得超233个赞
根据你的描述,大致猜测你的数据结构 <resultMap type="Produc" id="ProducMap"> ..... <result property="pid" column="pid"/> <collection property="posts" column="{pid=pid,xxx = xxxx }" ofType="Post" select="getByPostById"/> </resultMap> 其中 posts 为 Produc类中属性名 <select id="getByPostById" resultType="Post" > select * from post id =#{pid} and xxx = #{xxx} </select>
凡需要需要连带查询Post的,制定其resultMap为ProducMap 就好了
更详细的参考mybatis文档
慕勒0069038
TA贡献143条经验 获得超39个赞
<foreach collection="(这里填入list<post>的名字)" item="relationMap" separator="xx">
值是relationMap.属性的名字
</foreach>
你是这个意思么
添加回答
举报
0/150
提交
取消