dbcp1 [Spring] DataSource 얻기 1. DriverManager를 이용 … 2. DBCP를 이용 * jar 파일 : common-dbcp.jar, commons-pool.jar 3. JNDI 이용 [context.xml] … 4. DriverManagerDataSource 클래스를 이용 DriverManagerDataSource dataSource = new DriverManagerDataSource(); dataSource.setDriverClassName(“oracle.jdbc.OracleDriver”); dataSource.setUrl(“jdbc:oracle:thin:@localhost:1521:orcl”); dataSource.setUsername(“scott”); dataSource.setPassword(“tiger”); 2014. 2. 15. 이전 1 다음