有关tomcat5.5数据连接池配置问题。。。
有关tomcat5.5数据连接池配置问题。。。
哪位大侠给指点下,最好说的详细点,小弟是新手,请赐教。。。
------解决方案--------------------给您段示例代码
加在tomcat的项目片段中
<Context path= "/test " reloadable= "true " docBase= "D:\root " workDir= "D:\work ">
<Resource name= "jdbc/ds " type= "javax.sql.DataSource " // jndi名,驱动名
password= "123 "
driverClassName= "oracle.jdbc.driver.OracleDriver " maxIdle= "2 "
maxWait= "5000 " username= "test "
url= "jdbc:oracle:thin:@127.0.0.1:1521:ORCL " // 数据库url
maxActive= "4 "/>
</Context>