18 lines
721 B
XML
18 lines
721 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<c3p0-config>
|
|
<default-config>
|
|
<property name="jdbcUrl">
|
|
<![CDATA[
|
|
jdbc:mysql://localhost:3306/goods?useUnicode=true&characterEncoding=UTF8&useServerPrepStmts=true&prepStmtCacheSqlLimit=256&cachePrepStmts=true&prepStmtCacheSize=256&rewriteBatchedStatements=true
|
|
]]>
|
|
</property>
|
|
<property name="driverClass">com.mysql.jdbc.Driver</property>
|
|
<property name="user">root</property>
|
|
<property name="password">123</property>
|
|
|
|
<property name="acquireIncrement">3</property>
|
|
<property name="initialPoolSize">10</property>
|
|
<property name="minPoolSize">2</property>
|
|
<property name="maxPoolSize">10</property>
|
|
</default-config>
|
|
</c3p0-config> |