-
Heavy Weight and Light Weight
Why is ejb2.x considered as heavy weight and ejb3.0 is considered as light weight?What you mean by heavy/light weight? How it affects the performance of server?
-
BLOB & CLOB
What is the expansion for BLOB & CLOB?
-
Session Bean Interface
Which method is declared in the sessionbean interface?
-
-
What is Entity Bean. What are the various types of Entity Bean
Answered by Jey on 2005-05-08 12:47:06: Entity bean represents the real data which is stored in the persistent storage like Database or file system. For example, There is a table in Database called Credit_card. This table contains credit_card_no,first_name, last_name, ssn as colums and there are 100 rows in the table. Here each row is represented by one instance of the entity bean and it is found by...
-
What are the call back methods in Entity bean
Answered by Jey Ramasamy on 2005-05-08 19:51:04: 1. setEntityContext() 2. ejbCreate() 3. ejbPostCreate() 4. ejbActivate() 5. ejbPassivate() 6. ejbRemove() 7. unsetEntityContext()
-
-
What is local interface. How values will be passed
Answered by Jey on 2005-05-08 12:33:35: If Client and EJB classes are in the same machine ( Same JVM) then we can use Local linterface instead of Remote interface. Since Client and EJB are in same JVM, values are passed by referance.
-
-
What is the difference between ejbCreate() and ejbPostCreate()
Answered by Jey on 2005-05-08 11:14:33: Session and Message Driven Bean will have only ejbCreate() method and no ejbPostCreate() method. Entity bean will have both ejbCreate() and ejbPostCreate() methods. The ejbPostCreate method returns void, and it has the same input parameters as the ejbCreate method. If we want to set a relationship field to initialize the bean instance, we should do...
-
-
-
-
-
-
-
If i call remove() method on remote object, what happen?
If we call remove() method on remote object, ejb container removes the one row data in a table. if we call a remove() method on home object, container removes object home object.
-
-
-
EJB Interview Questions
Ans