http://www.mybatis.org/mybatis-3/zh/sqlmap-xml.html
实现复杂的嵌套有俩种方式
1:类似于这种:<collection property="posts" javaType="ArrayList" column="id" ofType="Post" select="selectPostsForBlog"/>
2:完全使用sql方式 <collection property="posts" ofType="Post"/>
俩点总结:
1:尽量使用第二种,查询一次数据库,第一种会出现1+N次扫描
2:第二种使用的时候,一定得带ID字段,(非常重要)