Skip to content

Files

Latest commit

9ebbc42 · Oct 12, 2019

History

History
This branch is 9 commits ahead of, 2104 commits behind iluwatar/java-design-patterns:master.

dao

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Nov 28, 2017
Oct 12, 2019
Nov 28, 2017
Oct 12, 2019
layout title folder permalink categories tags
pattern
Data Access Object
dao
/patterns/dao/
Persistence Tier
Java
Difficulty-Beginner

Intent

Object provides an abstract interface to some type of database or other persistence mechanism.

alt text

Applicability

Use the Data Access Object in any of the following situations

  • when you want to consolidate how the data layer is accessed
  • when you want to avoid writing multiple data retrieval/persistence layers

Credits