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 ejb ql?
Enlist the declarative transaction types?
What is software architecture of ejb?
Which is more beneficial: Stateful or Stateless Bean?
What do you mean by ejb?
What is the difference between session and entity beans? When should I use one or the other?
What is the procedure for the creation of stateless ejb?
Write the basic requirement of a cmp entity based class in 2.0 from ejb 1.1?
Define Initial Context?
Define SessionContext ?
What’s the difference between hibernate and ejb 3?
What is ejb context?
What is singleton session bean?
how can u integrate ejb and hibernate? How can u call hibernateDAO methods in session bean?
What does @singleton annotation do?