-
-
What is difference between EJB 1.1 and EJB 2.0
Answered by Jey on 2005-05-08 12:51:03: EJB 2.0 adds the local beans, which are accessible only from within the JVM where beans are running in. In EJB 1.1, we had to implement remote client views for all these beans, even if we had no remote clients.
-
-
What is ACID
Answered by Jey on 2005-05-08 17:27:45: ACID is releated to transactions. It is an acronyam of Atomic, Consistent, Isolation and Durable. Transaction must following the above four properties to be a better one Atomic: It means a transaction must execute all or nothing at all. Consistent: Consistency is a transactional characteristic that must be enforced by both the transactional system...
-
-
What is the difference between optimistic locking and pessimistic locking
Answer posted by Mohan on 2005-05-21 17:20:02: Optimistic locking assumes that no one would read or change the data while changes are being by a bean Pessimistic locking would rather lock down the data so that no one can access it
-
-
-
-
How many JVM's can we run in a system?
we can run any number of JVM's.
-
-
-
-
-
-
-
-
-
-
EJB Interview Questions
Ans