Java EJB Programming Question:

Is it legal to have static initializer blocks in EJB?

Tweet Share WhatsApp

Answer:

Although technically it is legal, static initializer blocks are used to execute some piece of code before executing any constructor or method while instantiating a class. Static initializer blocks are also typically used to initialize static fields - which may be illegal in EJB if they are read/write - In EJB this can be achieved by including the code in either the ejbCreate(), setSessionContext() or setEntityContext() methods.

Download Java EJB Programming PDF Read All 27 Java EJB Programming Questions
Previous QuestionNext Question
Is is possible for an EJB client to marshal an object of class java.lang.Class to an EJB? Is it possible to stop the execution of a method before completion in a SessionBean?