What is the procedure of EJB mechanism?

Questions by krishna_darl   answers by krishna_darl

Showing Answers 1 - 1 of 1 Answers

nrkonjeti

  • Aug 3rd, 2006
 

Generally, we write

1)Home Interface,

2)Remote Interface,

3)EJB Bean class.

explaction of 1: Home interface contains the create method, which is used to access EJB Bean Object at client side.

2: remote interface contains, business method, where we are declaring..

3: Bean containg the implementation of business methods, which are there in remote interface.

By accessing the object at client using remote interface, we can hide the original business logic.

if u see in depth, bean can be accessed by using.. jndi mechanism.

post me for any clarification.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions