Hi guys,
While a lot of posts have been written on the subject of Spring's OpenSession/EntityManagerInViewFilter, I couldn't find any that mentions its flaws. From what I understand, and assuming a typical layered web application architecture using a @Transactional service layer, the filter works as follows:
- The filter intercepts a servlet request
- The filter opens an EntityManager and binds it to the current thread
- Web controller is called
- Web controller calls service
- Transaction interceptor begins a new transaction, retrieves the thread-bound EntityManager and binds it to the transaction
- Service is called, does some stuff with EntityManager, then returns
- Transaction interceptor flushes the EntityManager then commits the transaction
- Web controller prepares view, then returns
- View is built
- Filter closes the EntityManager and unbinds it from current thread
In steps 8 and 9, objects that were loaded by the thread's EntityManager are still managed. Consequently, if lazy associations are touched in these steps, they will be loaded from the database using the still open EntityManager. From what I understand, each such access will require that the database open a transaction. Spring's transaction management will be unaware of this, hence my calling it "implicit transaction".
I see 2 problems with this:
- Loading several lazy associations will result in multiple database transactions, a possible hit on performance
- The root object and its lazy associations are loaded in different database transactions, so the data may possibly be stale (e.g. root loaded by thread 1, root associations updated by thread 2, root associations loaded by thread 1)
On the one hand, these 2 issues seem enough to reject using this filter (performance hit, data inconsistency). On the other hand, this solution is very convenient, avoids writing several lines of code, problem 1 may not be that noticeable and problem 2 may be pure paranoia.
What do you think?
Thanks!