service « Glassfish « JPA Q&A





1. Glassfish limited to two simultaneous threads with JPA/EJB/web service    stackoverflow.com

I'm exposing the following EJB3 stateless session bean through a web service.

@Stateless
public class UserRoleFacade implements UserRoleFacadeLocal {
    @PersistenceContext(unitName = "SimpleEA-ejbPU")
    private EntityManager em;

   ...

2. Using Hibernate inside a Glassfish 3 web service    stackoverflow.com

I've got a Java application that uses Hibernate for persistence. Now I'm trying to expose part of this app as a web service deployed to Glassfish 3.0.1. The code that implements ...

5. JPA + webservice do not mix    java.net