0
코어 J2EE 패턴 - 데이터 액세스 객체에서 자격 증명을 보내는 방법은 무엇입니까? 나는 그들이이 예제를 제공 http://www.oracle.com/technetwork/java/dataaccessobject-138824.html코어 J2EE 패턴에 자격 증명을 보내는 방법 DAO
에서 모델
// create the required DAO Factory
DAOFactory cloudscapeFactory = DAOFactory.getDAOFactory(DAOFactory.DAOCLOUDSCAPE);
// Create a DAO
CustomerDAO custDAO = cloudscapeFactory.getCustomerDAO();
// create a new customer
int newCustNo = custDAO.insertCustomer(...);