I\'m working with EJB and JPA on a Glassfish v3 app server.I have an Entity class where I\'m forcing one of the fields to be unique with a @Column annotation.
I wrote a stateless EJB method allowing to get an entity in \"read-only\" mode. The way to do this is to get the entity with the EntityManager then detach it (using the JPA 2.0 EntityManager).
I\'m having trouble following this guide to \"extract\" my interfaces and entities from my EAR to use them from another Web Application:
I\'m trying to inject a EJB within my RESTful Service (RESTEasy) via Annotations. public class MyServelet implements MyServeletInterface {
I have a JSF application running on glassfish 2.1 with a EJB 3 backend. For authentication I use a custom realm. The user authenticates using the e-mail-address and password he specified on registrati
The following code works: @Stateless @LocalBean public class MyClass { @PersistenceContext(name = \"MyPU\")
WARN[Ejb3Configuration] Persistence provider caller does not implement the EJB3 spec correctly. PersistenceUnitInfo.getNewTempClassLoad
Can you turn off log messages for certain query in Hiber开发者_C百科nate / EJB 3.0? Is there a way to override the parameter \"hibernate.show_sql\" for just a single query?From hibernate configuratio
I am using java.util.logging in开发者_如何学Python an EJB application running on glassfish v3. I can see the log messages in server.log but i don\'t seem to be able to configure the logging level in g
I\'d like to开发者_开发问答 know whether it is possible to get a reference to the ejb3 local business interfaces inside the jca adapter?