标签:
c3p0-config.xml
<?xml version="1.0" encoding="UTF-8"?> <c3p0-config> <default-config> <property name="jdbcUrl">jdbc:mysql://139.129.49.118:3306/bookstore</property> <property name="driverClass">com.mysql.jdbc.Driver</property> <property name="user">root</property> <property name="password">Mypa$$word</property> <property name="acquireIncrement">3</property> <property name="initialPoolSize">5</property> <property name="minPoolSize">2</property> <property name="maxPoolSize">8</property> </default-config> </c3p0-config>
标签:
原文地址:http://www.cnblogs.com/jiemoxiaodi/p/5668237.html