74 lines
2.4 KiB
XML
74 lines
2.4 KiB
XML
|
<?xml version='1.0' encoding='utf-8'?>
|
||
|
|
||
|
/*
|
||
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||
|
* contributor license agreements. See the NOTICE file distributed with
|
||
|
* this work for additional information regarding copyright ownership.
|
||
|
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||
|
* (the "License"); you may not use this file except in compliance with
|
||
|
* the License. You may obtain a copy of the License at
|
||
|
*
|
||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||
|
*
|
||
|
* Unless required by applicable law or agreed to in writing, software
|
||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
* See the License for the specific language governing permissions and
|
||
|
* limitations under the License.
|
||
|
*
|
||
|
* $Header:$
|
||
|
*/
|
||
|
|
||
|
<Context path="/jdbccontrol-cactified"
|
||
|
debug="5" reloadable="true" crossContext="true" override="true">
|
||
|
|
||
|
<Logger className="org.apache.catalina.logger.FileLogger" prefix="localhost_dataWeb_log." suffix=".txt" timestamp="true"/>
|
||
|
|
||
|
<Resource name="jdbc/TestDB" auth="Container" type="javax.sql.DataSource"/>
|
||
|
|
||
|
<ResourceParams name="jdbc/TestDB">
|
||
|
|
||
|
<parameter>
|
||
|
<name>factory</name>
|
||
|
<value>org.apache.commons.dbcp.BasicDataSourceFactory</value>
|
||
|
</parameter>
|
||
|
|
||
|
<parameter>
|
||
|
<name>driverClassName</name>
|
||
|
<value>org.apache.derby.jdbc.EmbeddedDriver</value>
|
||
|
</parameter>
|
||
|
|
||
|
<parameter>
|
||
|
<name>url</name>
|
||
|
<value>jdbc:derby:TestDB;create=true</value>
|
||
|
</parameter>
|
||
|
|
||
|
<!-- Maximum number of dB connections in pool. Make sure you
|
||
|
configure your mysqld max_connections large enough to handle
|
||
|
all of your db connections. Set to 0 for no limit.
|
||
|
-->
|
||
|
<parameter>
|
||
|
<name>maxActive</name>
|
||
|
<value>100</value>
|
||
|
</parameter>
|
||
|
|
||
|
<!-- Maximum number of idle dB connections to retain in pool.
|
||
|
Set to 0 for no limit.
|
||
|
-->
|
||
|
<parameter>
|
||
|
<name>maxIdle</name>
|
||
|
<value>30</value>
|
||
|
</parameter>
|
||
|
|
||
|
<!-- Maximum time to wait for a dB connection to become available
|
||
|
in ms, in this example 10 seconds. An Exception is thrown if
|
||
|
this timeout is exceeded. Set to -1 to wait indefinitely.
|
||
|
-->
|
||
|
<parameter>
|
||
|
<name>maxWait</name>
|
||
|
<value>10000</value>
|
||
|
</parameter>
|
||
|
|
||
|
</ResourceParams>
|
||
|
</Context>
|