可以请一些人澄清一下我必须在mybatis的mappings xml文件中使用ofType和javaType的情况。 并解释它们之间的区别
答案 0 :(得分:2)
javaType
是当前映射属性的类型。
ofType
是集合中元素的类型,仅在<collection>
<collection property="posts" javaType="ArrayList" column="id" ofType="Post" select="selectPostsForBlog"/>
读作:&#34; Post类型的ArrayList中的帖子集合。&#34;