artimus/WEB-INF/classes/poolman.xml (40 lines of code) (raw):

<?xml version="1.0" encoding="UTF-8"?> <poolman> <management-mode>local</management-mode> <!-- ========================================================== --> <!-- These entries are an example of JDBC Connection pooling. --> <!-- Many of the parameters are optional. Consult the --> <!-- UsersGuide.html doument and the poolman.xml.template file --> <!-- for guidance and element definitions. --> <!-- ========================================================== --> <datasource> <!-- ============================== --> <!-- Physical Connection Attributes --> <!-- ============================== --> <!-- Standard JDBC Driver info --> <dbname>DATASOURCE</dbname> <jndiName>jndi-datasource</jndiName> <driver>org.gjt.mm.mysql.Driver</driver> <url>jdbc:mysql://localhost:3306/artimus</url> <username>root</username> <password></password> <minimumSize>0</minimumSize> <maximumSize>10</maximumSize> <connectionTimeout>600</connectionTimeout> <userTimeout>12</userTimeout> <shrinkBy>10</shrinkBy> <logFile>/var/applogs/poolman.log</logFile> <debugging>false</debugging> <!-- Query Cache Attributes--> <cacheEnabled>true</cacheEnabled> <cacheSize>20</cacheSize> <cacheRefreshInterval>120</cacheRefreshInterval> </datasource> <datasource> <!-- ============================== --> <!-- Physical Connection Attributes --> <!-- ============================== --> <!-- Standard JDBC Driver info --> <dbname>WIZARD</dbname> <jndiName>jndi-wizard</jndiName> <driver>org.gjt.mm.mysql.Driver</driver> <url>jdbc:mysql://localhost:3306/struts_wizard</url> <username>root</username> <password></password> <minimumSize>0</minimumSize> <maximumSize>10</maximumSize> <connectionTimeout>600</connectionTimeout> <userTimeout>12</userTimeout> <shrinkBy>10</shrinkBy> <logFile>/var/applogs/poolman.log</logFile> <debugging>false</debugging> <!-- Query Cache Attributes--> <cacheEnabled>true</cacheEnabled> <cacheSize>20</cacheSize> <cacheRefreshInterval>120</cacheRefreshInterval> </datasource> <!-- DISABLED FOR PRODUCTION <admin-agent> <class>com.sun.jdmk.comm.HtmlAdaptorServer</class> <name>Adaptor:name=html</name> <maxClients>10</maxClients> <port>8082</port> </admin-agent> --> </poolman>