tomcat 6.0配置 oracle 数据库连接池
tomcat 5.X 与 tomcat 6.x 连接池配置有所不同,这里只是记录 tomcat 6.0的配置过程。
容器:tomcat 6.0
数据库:oracle 10g
操作步骤:
1、
将 oracle 数 据 库 的 驱 动 包 ojdbc6.jar 放 到 tomcat 6.0/lib , 否 则 运 行 会 报
java.lang.ClassNotFoundException 异 常 , 而 且 你 在 java Build
Path->Libraries->Add JARs 把 驱 动 包 加 进 来 也 还 是 会 报 错 的 , 一 定 要 把 驱 动 包 加
到 tomcat/lib 里面来;
2、
在 tomcat 的配置文件(context.xml)加入数据库连接信息
<Resource name="jdbc/zhx" auth="Container" type="javax.sql.DataSource"
driverClassName="oracle.jdbc.driver.OracleDriver"
url="jdbc:oracle:thin:@192.168.20.90:1521:carddb"
username="card_settle"
password="card_settle"
maxActive="20"