To initialize or not initialize JPA relationship mappings?

后端 未结 4 1153
死守一世寂寞
死守一世寂寞 2021-01-01 12:58

In one to many JPA associations is it considered a best practice to initialize relationships to empty collections? For example.

@Entity
public class Order {          


        
相关标签:
4条回答
  • 2021-01-01 13:04

    I would also recommend using Guava's immutable collections, e.g.,

    import com.google.common.collect.ImmutableList;
    // ...
    @OneToMany(mappedBy="order")
    List<LineItem> lineItems = ImmutableList.of();
    

    This idiom never creates a new empty list, but reuses a single instance representing an empty list (the type does not matter). This is a very common practice of functional programming languages (Scala does this too) and reduces to zero the overhead of having empty objects instead of null values, making any efficiency argument against the idiom moot.

    0 讨论(0)
  • 2021-01-01 13:11

    JPA itself doesn't care whether the collection is initialized or not. When retrieving an Order from the database with JPA, JPA will always return an Order with a non-null list of OrderLines.

    Why: because an Order can have 0, 1 or N lines, and that is best modeled with an empty, one-sized or N-sized collection. If the collection was null, you would have to check for that everywhere in the code. For example, this simple loop would cause a NullPointerException if the list was null:

    for (OrderLine line : order.getLines()) {
        ...
    }
    

    So it's best to make that an invariant by always having a non-null collection, even for newly created instances of the entity. That makes the production code creating new orders safer and cleaner. That also makes your unit tests, using Order instances not coming from the database, safer and cleaner.

    0 讨论(0)
  • 2021-01-01 13:22

    I would rather prefer an utility like this:

    public static <T> void forEach(Collection<T> values, Consumer<T> consumer) {
      if (values != null) values.stream().forEach(consumer);
    }
    

    and use it in code like:

    Utils.forEach(entity.getItems(), item -> {
        // deal with item
    });
    
    0 讨论(0)
  • 2021-01-01 13:23

    My suggestion would be to not initialize them.

    We ran into a situation where we initialized our collections, then retrieved same entity essentially twice successively. After the second retrieve, a lazy loaded collection that should have had data was empty after calling its getter. If we called the getter after the first retrieve, on the other hand, the collection did load the data. Theory is that the second retrieve got a managed entity from the session that had its collection initialized to empty and appeared to already be loaded or appeared to be modified, and therefore no lazy load took place. Solution was to NOT initialize the collections. This way we could retrieve the entity multiple times in the transaction and have its lazy loaded collections load correctly.

    One more item to note: in a different environment, the behavior was different. The collection was lazy loaded just fine when calling the collection's getter on the entity that was retrieved the second time in the same transaction.

    Unfortunately I don't have information on what was different between the two environments. It appears - although we didn't prove it 100% and didn't identify the implementations - that different JPA implementations work differently with respect to initialized collections.

    We were using hibernate - just don't know which version we were using on each of the two platforms.

    0 讨论(0)
提交回复
热议问题