初始化或不初始化 JPA 关系映射?
2022-09-01 21:03:43
在一对多 JPA 关联中,是否认为将关系初始化为空集合是一种最佳实践?例如。
@Entity
public class Order {
@Id
private Integer id;
// should the line items be initialized with an empty array list or not?
@OneToMany(mappedBy="order")
List<LineItem> lineItems = new ArrayList<>();
}
在上面的示例中,是否最好使用默认值为空来定义?有哪些优点和缺点?lineItems
ArrayList