EJB Section Index
How do I create a statefull session bean with EJB 3.0?
To create a statefull session bean you need to make use of the @Statefull annotation. You place the annotation on the line before the class declaration. You will also need to impleme...more
How do I create a stateless session bean with EJB 3.0?
How do I create a stateless session bean with EJB 3.0?
How do I use the @PostActivate annotation in EJB 3.0?
How do I use the @PostActivate annotation in EJB 3.0?
How do I use the @PostConstruct annotation in EJB 3.0?
How do I use the @PostConstruct annotation in EJB 3.0?
How do I use the @PreDestroy annotation in EJB 3.0?
How do I use the @PreDestroy annotation in EJB 3.0?
How do I use the @PrePassivate annotation in EJB 3.0?
How do I use the @PrePassivate annotation in EJB 3.0?
How do you implement ejbCreate, ejbRemove, ejbActivate and ejbPassivate in EJB 3.0?
How do you implement ejbCreate, ejbRemove, ejbActivate and ejbPassivate in EJB 3.0?
How do you implement ejbRemove in EJB 3.0?
How do you implement ejbRemove in EJB 3.0?
When was Java EE 5 released?
When was Java EE 5 released?
When was J2EE 1.2 released?
December 7, 1999. See the press release at http://www.sun.com/smi/Press/sunflash/1999-12/sunflash.991207.7.xml.more
When was J2EE 1.3 released?
September 24, 2001. See the press release at http://www.sun.com/smi/Press/sunflash/2001-09/sunflash.20010924.i1.html.more
When was J2EE 1.4 released?
April 26, 2004. See the press release at http://www.sun.com/smi/Press/sunflash/2004-04/sunflash.20040426.1.xml.more
What kind of certification does JBoss offer?
JBoss has a "Certified JBoss Developer" as its basic level. Additional levels are availalble. See http://www.jboss.org/services/certification for more details of this basic and the more advanced l...more
What is GlassFish?
The GlassFish Project is Sun's open source application server project. Found at https://glassfish.dev.java.net/, you can participate in the development of the latest version of Sun's Java System A...more
Brief description on the 4 interfaces applicable to EJBs (Remote, Local, Home, LocalHome): when to use them and the differences between them?
The Remote and Home interfaces have somewhat misleading names, because both interfaces are used by the EJB client, which may be on a "remote" machine.
You will need to use both when working with ...more