Explain the difference between, Java Class and Bean?
Answer Posted / john
A Java class is meant to carry out the different database
operations like retrtieveing data, inserting data and
updating data.
The EJB has the business logic within it. the EJB decides
what the business requires and carries out different
transactions. It makes use of the Java class to interact
with the database.
The Java Bean is simple java class which is contains Getters
and Setters. They are just meant to modify the values of the
variables. They neither contain any business logic nor do
they interact with the database.
Generaly a Java Class would retrieve some data and this data
is assigned to variables using the Setter method of the Java
Bean. If we want to retrieve the value of the cariable again
we use a Getter method
| Is This Answer Correct ? | 22 Yes | 16 No |
Post New Answer View All Answers
What is an ejb container?
Write down the steps for the creation of stateless ejb.
Enlist the contents of Container.
How can I access ejb from asp?
What are transaction isolation levels in ejb?
What is ejb context?
What is ejb ql?
What do you mean by ‘hot deployment’ ?
What are the key features of the ejb technology?
What is applicationscoped?
How can a CORBA object, accessed from a EJB?
Explain the concept of connection pooling feature of ejb container?
What is the procedure for the creation of stateless ejb?
How many ejb objects are created for a bean?
What is backing bean?