Mybatis中 collection 和 association 的区别
Posted Rainyn
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mybatis中 collection 和 association 的区别相关的知识,希望对你有一定的参考价值。
public class A{
private B b1;
private List<B> b2;
}
在映射b1属性时用association标签,(一对一的关系)
映射b2时用collection标签(一对多的关系)
以上是关于Mybatis中 collection 和 association 的区别的主要内容,如果未能解决你的问题,请参考以下文章
mybatis中association和collection的column传入多个参数值
mybatis中Invalid bound statement (not found) 和 Result Maps collection already contains value for...错误
mybatis ForEach Collection集合等规范解析(转)