You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
857 B

<?xml version="1.0" encoding="UTF-8"?>
<c3p0-config>
<default-config>
<property name="jdbcUrl"><![CDATA[jdbc:mysql://localhost:3306/it-blog?useUnicode=true&characterEncoding=utf8&serverTimezone=UTC]]></property>
<property name="driverClass">com.mysql.cj.jdbc.Driver</property>
<property name="user">root</property>
<property name="password">123456</property>
<property name="initialPoolSize">10</property>
<property name="minPoolSize">10</property>
<property name="maxPoolSize">300</property>
<property name="idleConnectionTestPeriod">2</property>
<property name="maxIdleTime">30</property>
<property name="maxIdleTimeExcessConnections">0</property>
<property name="checkoutTimeout">30000</property>
<property name="maxStatements">200</property>
</default-config>
</c3p0-config>