What's true about the client's view of an entity bean's remote component interface? (Choose all that apply)
A. Multiple clients can access the same entity object concurrently
B. New entity beans can be created using a method in this interface
C. Entity beans may not survive a crash of the container
D. Business methods cannot return a reference to the entity object
I answered A,C but the correct one was only A.
I answered C, because if the
EJB container crashes, the entity beans (not the entities) cannot survive. What's wrong with it? When
Jboss runs out of memory (and it crashes), if I try to re-use the entity object, I get exceptions.