假设我有以下模型
public class ExampleComment {
private int id;
private Integer commentOf;
private List<ExampleComment> comments;
...
getters, setters
...
}
和数据库:
id | commentOf
1 | null
2 | 1
3 | 1
4 | 2
如果我使用一些令人讨厌的SQL程序(这可能不是正确的解决方案?),我仍然不知道如何将它转移到mybatis的java对象中。
我知道当我在.net中做同样的事情时,它是由实体框架制作的,所以可能应该可以在mybatis中制作,但我无法在google上找到任何解决方案。
答案 0 :(得分:1)
假设comments属性将包含当前评论在COMMENTOF列中的所有评论,则以下内容应该有效。
主要评论结果地图:
<resultMap id="commentMap" type="ExampleComment">
<id property="id" column="id" />
<result property="commentOf" column="commentOf" />
<collection property="comments" javaType="ArrayList" column="COMMENTOF" ofType="ExampleComment" select="selectChildComments"
</resultMap>
选择selectChildComments:
<select id="selectChildComments" resultMap="commentMap">
SELECT ID, COMMENTOF FROM COMMENT_TABLE WHERE COMMENTOF=#{id}
</select>