tomcat mysql jndi连接池

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tomcat mysql jndi连接池相关的知识,希望对你有一定的参考价值。

  1. <!-- META-INF/context.xml -->
  2. <?xml version="1.0" encoding="UTF-8"?>
  3. <Context path="Products">
  4. <Resource auth="Container" driverClassName="com.mysql.jdbc.Driver" maxActive="100" maxIdle="30" maxWait="10000" name="jdbc/ProductData" password="developer" type="javax.sql.DataSource" url="jdbc:mysql://localhost:3306/product_entry?autoReconnect=true" username="developer"/>
  5. </Context>
  6.  
  7. <!-- WEB-INF/web.xml -->
  8. <resource-ref>
  9. <description>Database for IFPWAFCAD application</description>
  10. <res-ref-name>jdbc/ProductData</res-ref-name>
  11. <res-type>javax.sql.DataSource</res-type>
  12. <res-auth>Container</res-auth>
  13. <res-sharing-scope>Shareable</res-sharing-scope>
  14. </resource-ref>

以上是关于tomcat mysql jndi连接池的主要内容,如果未能解决你的问题,请参考以下文章

使用JNDI连接数据库连接池问题,救命啊!!!!

Tomcat数据库连接池

数据源,连接池,连接,jndi

Tomcat配置连接c3p0连接池

Spring+Tomcat的JNDI数据源连接池简单配置

5. JDBC之数据库连接池——Part2