What advantage does an entity bean have over a sessin bean?
Answer Posted / tarunam verma
entity beans are generally used for database interaction
thus provide various EJB services like
transctions,persitence etc which using the seesion bean
will be manully handeled by the programmer while
interacting with Db,session beans are basically for
processing the logic not for DB entities
| Is This Answer Correct ? | 15 Yes | 2 No |
Post New Answer View All Answers
What is variable length arguments in java?
What is a null check?
What is a null point?
When will we use them?
Explain the significance of listiterator.
Is string serializable in java?
How do you find the maximum number from an array without comparing and sorting?
Difference between this() and super() ?
What is a final class in java?
What do you understand by synchronization?
Why heap memory is called heap?
What is 32 bit float?
What is the string function?
Which java version is latest?
can java object be locked down for exclusive use by a given thread? Or what happens when a thread cannot acquire a lock on an object? : Java thread