欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

MYSQL数据连接池配置_MySQL

程序员文章站 2024-01-23 20:51:16
...
bitsCN.com


MYSQL数据连接池配置

在 apache-tomcat-7.0.25/conf

里面的context

type="javax.sql. DataSource"

maxActive="100" maxIdle="30" maxWait="10000"

username="root" password="123456"

driverClassName="com.mysql.jdbc.Driver"

url="jdbc:mysql://localhost:3306/bookstore?autoReconnect=true"

removeAbandoned="true" removeAbandonedTimeout="60" logAbandoned="true"/>

bitsCN.com