DAO Design Pattern
DAO stands for Data Access Object. DAO [Design Pattern](/community/tutorials/java-design-patterns-example-tutorial) is used to separate the data persistence logic in a separate layer. This way, the service remains completely in dark about how the low-level operations to access the database is done. This is known as the principle of Separation of Logic. DAO Design Pattern With DAO […]