what is difference between business delegate and data access
object(dao)? in java?
Both are different design pettern. name drives their
functionality.
Business Delegate : it is used decouple presentation and
business layer. it avoids to intract presentation client to
understand your business services.
Data Access Object : DAO is used on database layer,
generally it is used to avoid database intraction by EJB or
Business Object. it is used to retreive and store data.
mostly I preferred, DAO is used with Value Objects
| Is This Answer Correct ? | 3 Yes | 1 No |
What are the methods available in a class?
Can a class be subclass of itself?
How do you remove an element from an arraylist in java?
Is there a sort function in java?
Explain parallel processing in java8?
If we don’t want some of the fields not to serialize how to do that?
why would you use a synchronized block vs. Synchronized method? : Java thread
What are different types of Exceptions?.
What is integer parseint?
How does a for loop work?
How many types of keywords are there?
Is logger a singleton?