root/trunk/myweb/WebContent/META-INF/context.xml

Revision 22, 471 bytes (checked in by yabuki, 3 years ago)
  • Property svn:mime-type set to text/plain
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<Context path="/myweb" docBase="myweb" reloadable="true">
3  <Resource
4    name="jdbc/mydb"
5    auth="Container"
6    type="javax.sql.DataSource"
7    driverClassName="com.mysql.jdbc.Driver"
8    url="jdbc:mysql://localhost/mydb?characterEncoding=UTF-8"
9    username="test"
10    password="pass"
11    maxActive="20"
12    maxIdle="10"
13    maxWait="10000"
14    validationQuery="SELECT 1"
15    testWhileIdle="true" />
16</Context>
Note: See TracBrowser for help on using the browser.