当我们在两个表之间有一个多对多关联,并且我们为这些表创建实体 Java bean 时,在每个表中创建一个集合以引用与其关联的项目有什么好处。
例如,我们有两个表A
,B
它们以多对多的方式相互关联,并让AB
数据库中的表链接起来。
public class A {
...
List<B> ListBs; // what is the benefit to create this list, the same question in class B.
...
}