InterviewSolution
Saved Bookmarks
| 1. |
What do you mean by DAO in Spring? |
|
Answer» DAO or Data Access Object is a design pattern where DAO is an object, which provides an abstract INTERFACE to a DATABASE or some other type of persistence mechanisms. This support AIMS at working with data access technologies like Hibernate and JPA EASY and CONSISTENT. |
|