-
-
-
-
Wait(), notify() and notyfyAll() methods
Why wait(), notify() and notyfyAll() methods are avialble in Object class but not in Thread class? Explain.
-
-
-
What is the difference between JavaBean and EJB
Answer posted by Mohan on 2005-05-20 08:40:04: Java Beans is intra-process component where as EJB is an Inter-Process component JavaBeans is particularly well-suited for asynchronous, intra-application communications among software
-
Can a Session Bean be defined without ejbCreate() method
Answer posted by Mohan on 2005-05-21 19:27:35: No
-
What are the call back methods in Session bean
Answered by Jey on 2005-05-08 19:41:22: Session bean callback methods differ whether it is Stateless or stateful Session bean. Here they are. Stateless Session Bean 1. setSessionContext() 2. ejbCreate() 3. ejbRemove() Stateful Session Bean 1. setSessionContext() 2.ejbCreate() 3.ejbPassivate() 4.ejbActivate() 5.ejbRemove()
-
What is the difference between EAR, JAR and WAR file
Answered by Jey on 2005-05-08 11:23:41: In J2EE application modules are packaged as EAR, JAR and WAR based on their functionality JAR: EJB modules which contains enterprise java beans class files and EJB deployment descriptor are packed as JAR files with .jar extenstion WAR Web modules which contains Servlet class files,JSP FIles,supporting files, GIF and HTML files are packaged...
-
-
-
-
What is Session Bean. What are the various types of Session Bean
Answer posted by Mohan on 2005-05-20 08:44:39: SessionBeans typically are used to represent a client they are of two typse Stateful Session Beans : they maintain conversational state between subsequest calls by a client Stateless Session Bean : consider this as a servlet equivalent in EJB. It is just used to service clients regardless of state and does not maintain any state....
-
-
-
-
-
What is the difference between Stateful session bean and Stateless session bean
Answer posted by Mohan on 2005-05-20 08:45:36: Stateful session beans have the passivated and Active state which the Stateless bean does not have.
-
EJB Interview Questions
Ans