InterviewSolution
Saved Bookmarks
| 1. |
Explain javax.ejb.PostActivate annotation. |
|
Answer» javax.ejb.PostActivate annotation is used to specify callback method of ejb lifecycle. This method will be called when EJB container just activated/reactivated the bean instance. This interface is used to expose the business methods to local clients which are running in same deployment/application as EJB. |
|