This chapter is from the book
Quiz
Which of the following is true for a session bean?
It performs a task for a client
It performs a task for multiple clients
It represents shared data in a database
It survives an EJB server crash
Which of the following methods is invalid for a stateless session bean?
ejbCreate()
ejbCreate(...)
ejbRemove()
setSessionContext()
Which of the following is first called by the container on a stateless session bean?
ejbCreate();
newInstance();
ejbActivate();
setSessionContext()
Quiz Answers
A
B
B