mybatis中association和collection

association和collection使用时机区别:

association 在一对一,多对一时使用
collection 在一对多,多对多时使用

在association标签中 javaType属性指向的是实体类的属性
在collection标签中 javaType属性指向的是集合的类型 ofType指向的是集合的泛型类型

猜你喜欢

转载自blog.csdn.net/weixin_44682587/article/details/107762966