what are required main interfaces in EJB?
Answers were Sorted based on User's Feedback
Answer / shilpa kapurkar
when we go for EJB 2.x version, the required interfaces to
develop and EJB component are
Remote Interface - Business Logic methods declaration
Home Interface - Life Cycle Methods
Bean class - Implemetation for BL methods & Life cycle methods
optionally, Local Interfaces.
When we go for EJB 3.0 , there is no need of declaring home
interface or Remote Interface. Instead it will make use of
JAVA POJO & POJI classes and interfaces. EJB 3.0 will have
only Business Interface (POJI) in which business methods are
declared. EJB3.0 makes use if Annotations.
| Is This Answer Correct ? | 1 Yes | 0 No |
Is soap stateless or stateful?
Define Context?
Explain Stateful session bean life cycle?
What is Introspection ?
What is meant by ejb?
In what way, the client gets a reference to an existing entity bean?
How to connect to a specific enterprise bean?
What do you mean by abstract schema?
What is @resource in java?
java doesnot support multiple inhetance. but a interface can support.how the ambiguities are rectified in interfaces?
What is stateless ejb?
Name the acid properties of a transaction.