使用数据库连接池配置数据源
Posted whirlwind
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用数据库连接池配置数据源相关的知识,希望对你有一定的参考价值。
Tomcat服务器的context.xml文件中Context元素下增加Resource元素
oracle
<Resource name="jdbc/hrs" auth="Container" type="javax.sql.DataSource" maxActive="100" maxIdle="20" maxWait="30000" username="hr" password="hr" driverClassName="oracle.jdbc.driver.OracleDriver" url="jdbc:oracle:thin:@localhost:1521:orcl" />
<Resource name="jdbc/test" auth="Container" type="javax.sql.DataSource" maxActive="100" maxIdle="20" maxWait="30000" username="root" password="root" driverClassName="com.mysql.jdbc.Driver" url="jdbc:mysql://localhost:3306/test" removeAbandoned="true" removeAbandonedTimeout="30" />
以上是关于使用数据库连接池配置数据源的主要内容,如果未能解决你的问题,请参考以下文章