I am starting a new seam project targeted at a JBoss EAP server and I have very little experience with EJB3.What do I gain from using EJB3 over just using a war proje开发者_JS百科ct with pojos and sea
Obviously it\'s not so diff开发者_高级运维icult to send out emails from a Java EE application via JavaMail. What I am interested in is the best pattern to receive emails (notification bounces, mostly)
I 开发者_如何转开发have an EJB project communicating with a Swing client over RPC. I would like to know how to call EJB or utility class methods on the business logic at server startup.
New to EJB3, please help/explain. Inside a session bean I declare an EntityManager as follow @PersistenceContext(unitName=\"ScheduleUnit\")
I\'ve written an authorization system which relies on objects representing the current user. To simplify programming and increase performance I want to hold those objects in a ThreadLocal after the us
We are using Seam 2.2.0 Java 1.6.14 Weblogic 10.3.1.0 (named 11g Doh!) I have looked at Seam reference Seam in action
I am trying to use 2 persistence units within the same transaction in a Java EE application deployed on Glassfish.
Let\'s say I have remote interface A: @Remote public interface A { public Response doSomething(); } And implementation:
I am learning EJB3 from last few days. I have many questions regarding EJB, application servers and deployment of EJB.
I use JSF managed beans calling EJB methods that are provide data from database. I want to use some data already on the welcome page of the application. What is the best solution for it?