-
-
-
-
-
-
-
-
-
-
-
What is the difference between sessioncontext and entitycontext
Answer posted by Mohan on 2005-05-21 17:08:14: Session Context Contains information that a Session Bean would require from the container Entity Context contains the information that an Entity Bean would require from a container
-
What is lazy loading
Answered by Nikhil on 2005-05-11 11:28:14: Lazy loading is a characteristic of an application when the actual loading and instantiation of a class is delayed until the point just before the instance is actually used. The goal is to only dedicate memory resources when necessary by only loading and instantiating an object at the point when it is absolutely needed. Tools such as Eclipse have...
-
-
-
-
-
-
-
What is abstract schema
Answer posted by Mohan on 2005-05-21 18:34:01: CMP uses abstract schema to map to the physical database
-
What is re-entrant. Is session beans reentrant. Is entity beans reentrant
Answered by Jey on 2005-05-08 12:09:49: Re-entrant means where Bean A calls methods of Bean B and then Bean B turns around and calls methods of Bean A. The above all within a single thread of control. This is also called as loopback. Entity beans are the only one bean that is reentrant. Neither Session bean nor Message Driven Bean are reentrant. When Entity bean, we have to declare in the...
EJB Interview Questions
Ans