"DAOFactory"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-== 참고 자료 == +==참고==))
 
31번째 줄: 31번째 줄:
*[[추상 팩토리 패턴]]
*[[추상 팩토리 패턴]]


==참고 자료==
==참고==
*https://code.google.com/p/developerhaus/wiki/TobySpring_01
*https://code.google.com/p/developerhaus/wiki/TobySpring_01
*http://www.oracle.com/technetwork/java/dataaccessobject-138824.html
*http://www.oracle.com/technetwork/java/dataaccessobject-138824.html


[[분류: DAO]]
[[분류: DAO]]

2017년 6월 27일 (화) 02:38 기준 최신판

1 개요[ | ]

DAOFactory
DAO팩토리

 

 

 

2 예시[ | ]

public class DaoFactory {
   public UserDao userDao() {
      return new UserDao(connectionMaker());
   }

   public AccountDao accountDao() {
      return new AccountDao(connectionMaker());
   }

   public ConnectionMaker connectionMaker() {
      return new DConnectionMaker();
   }
}

3 같이 보기[ | ]

4 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}