When trying to optimize transactions on my java ee 6 project using hibernate, I tried to do as I did with Eclipselink and have transactions turned开发者_C百科 off for read-only queries, like follows:
I have a EAR package that contains a web module and EJB. The EJB is currently exposed its contains to local app client via Remote interface
I have a structure like this @Stateless public class CoreMainEJB implements CoreMainEJBRemote, CoreMainEJBLocal {
Using Glassfish, I can setup a string jndi entry: JNDI name: \"com/xyzcompany/echo/EchoServiceBean/viewName\"
We have a simple statele开发者_JAVA百科ss EJB timer that gets an instance of a spring service injected into it. The spring service has a method marked as transactional. When the EJB uses Transaction M
Being completely new to Java EE (but not to Java itself) I\'m trying to build a very simple \"Enterprise Application\" with Hibernate as JPA provider and JSF as the actual UI framework. For this purpo
I know that the general consensus is to use one or the other, but we have a specific task where we would like to use our spring services from within a stateless ejb timer.
I need to initialize a set of static String values stored in an XML files [ I know this is against the EJB spec ]
I have a Singleton EJB (javax.ejb.Singleton version. sigh.) which has a CDI observer method on it. When I try to deploy this to glassfish 3.1 the server fails to deploy the EAR file without any real e
I am using Java Enterprise (3.1) with Glassfish. I have two seperate EARs which are communicating synchronously via JMS. More specifically: