ConnectionPool ¼³Á¤½Ã¿¡ mysql°ú Oracle µÑ´Ù ¾²°í½ÍÀºµ¥¿ä context.xml ÀÔ´Ï´Ù
<?xml version="1.0" encoding="UTF-8"?> <Context> <Resource name="jdbc/myOracle" auth="Contatiner" driverClassName="oracle.jdbc.driver.OracleDriver" type="javax.sql.DataSource" url="jdbc:oracle:thin:@localhost:1521:xe" username="scott" password="tiger" maxActive="20" maxIdle="10" maxWait="-1" /> </Context>
web.xml ÀÔ´Ï´Ù.
<resource-ref> <description>ConnectionPool</description> <res-ref-name>jdbc/myOracle</res-ref-name> <res-type>javax.sql.DataSource</res-type> <res-auth>Container</res-auth> </resource-ref>
ÀÌ·±½ÄÀ¸·Î µÇ¾îÀִµ¥ mysqlµµ ¼³Á¤ÇØÁÖ°í½ÍÀºµ¥ ¾î¶²½ÄÀ¸·Î Ãß°¡ÇؾßÇÒ±î¿ä?
|