Would like to hear experts on best practice of editing JPA entites from JSF UI.

So, a couple of words about the problem.

Imagine I have the persisted object MyEntity and I fetch it for editing. In DAO layer I use

return em.find(MyEntity.class, id);

Which returns MyEntity instance with proxies on "parent" entities - imagine one of them is MyParent. MyParent is fetched as the proxy greeting to @Access(AccessType.PROPERTY):

@Entity
public class MyParent {

    @Id
    @Access(AccessType.PROPERTY)    
    private Long id;
...
}

and MyEntity has the reference to it:

@ManyToOne(fetch = FetchType.LAZY)
@LazyToOne(LazyToOneOption.PROXY)
private MyParent myParent;

So far so good. In UI I simply use the fetched object directly without any value objects created and use the parent object in the select list:

<h:selectOneMenu value="#{myEntity.myParent.id}" id="office">
      <f:selectItems value="#{parents}"/>
   </h:selectOneMenu>

Everything is rendered ok, no LazyInitializationException occurs. But when I save the object I recieve the "LazyInitializationException: could not initialize proxy - no Session" on MyParent proxy setId() method.

I can easily fix the problem if I change the MyParent relation to EAGER

   @ManyToOne(fetch = FetchType.EAGER)
    private MyParent myParent;

or fetch the object using "left join fetch p.myParent" (actually that's how I do now). In this case the save operation works ok and the relation is changed to the new MyParent object transparently. No additional actions (manual copies, manual references settings) need to be done. Very simple and convenient.

BUT. If the object references 10 other object - the em.find() will result 10 additional joins, which isn't a good db operation, especially when I don't use references objects state at all. All I need - is links to objects, not their state.

This is a global issue, I would like to know, how JSF specialists deal with JPA entities in their applications, which is the best strategy to avoid both extra joins and LazyInitializationException.

Extended persistence context isn't ok for me.

Thanks!

link|improve this question

feedback

1 Answer

A very common approach is to create an open entity manager in view filter. Spring provides one (check here).

I can't see that you're using Spring, but that's not really a problem, you can adapt the code in that class for your needs. You can also check the filter Open Session in View, which does the same, but it keeps a hibernate session open rather than an Entity Manager.

This approach might not be good for your application, there're a few discussions in SO about this pattern or antipattern. Link1. I think that for most applications (smalish, less than 20 concurrent users) this solution works just fine.

Edit

There's a Spring class ties better with FSF here

link|improve this answer
Hi.Thanks for the answer. I looked at this pattern. Actually I use the EJB container-managed transactions, just inject the entity manager and the container demarcates the transactions. Spring open session in view classes need total move of my logics to spring managed transactions with spring transaction managers and manual transaction demarcation or @Transactional I think. Though currently I use Spring only for several parts of my application. Is there any easy way to apply OSIV pattern to EJP container-managed persistence context? – bitec Jun 15 '11 at 9:16
@bitec unfortunately, I have no idea how to do this in an EJB container. My outdated knowledge on EJB says that all the entities should be hydrated when they leave the services (usually this is done "manually") or they should be transformed into DTOs. – Augusto Jun 15 '11 at 14:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.