Basic types of Enterprise JavaBeans?
Answers were Sorted based on User's Feedback
Answer / janet
There are two types of Enterprise beans- session beans and
entity beans representing different types of business logic
abstractions.
session beans represent behaviors associated with client
sessions ,they are generally implemented to perform a
sequence of tasks with in the context of a transaction. A
session bean is a logical extension of the client program
,running process on the clients behalf remotely on the server.
Entity bean represent specific data or collection of data
,such as a row in a relational database.Entity bean methods
provided operations for action on the data represented by
the bean.An entity bean is persistent,it servives as long as
its data remains in the database.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / harika.thota001@gmail.com
EJB's holds the business logic solely.
There are 2 types of EJB
1--> Session ==>Performs task for the client
2--> Message Driven ==> acts as a listener for a message type ,for example Java Message Service API
| Is This Answer Correct ? | 0 Yes | 0 No |
Life Cyle methods in Entity Bean with Container Managed persistence
What transaction attributes does Java Bean containers support?
What is ejb in spring?
What is the difference between session and entity beans? When should I use one or the other?
Where a bean can be used ?
Match the ejb functions given below with the functionality equivalent in sql?
What is the advantage of using entity bean for database operations, over directly using jdbc api to do database operations? When would I use one over the other?
Can a client interact with an JavaBean directly? Explain?
in EJB diclare the static methods are not?
What are stateless functions?
What is ejb and its properties?
Should services be stateless?