conversation « Seam « JPA Q&A





1. Help me to understand SEAM and Hibernate?    stackoverflow.com

I want to use SEAM Framework with Hibernate but do not want to use EJB. I cannot use EJB. First question is, can I use EntityManager? or is EntityManager a part of ...

2. SEAM/Hibernate: I can't get changes from database during a Conversation    stackoverflow.com

I have a class:

@Name("foo")
@Scope(ScopeType.CONVERSATION)
public class Foo {

    @In
    Session session;

    @In
    private Conversation conversation;

    @RequestParameter
  ...

3. Hibernate session in Seam conversation grows too large    stackoverflow.com

We are using a Seam conversation for a wizard that spans multiple pages, some of these screens load a lot of data for user selection (can be several thousand records). The ...