Skip to content

Instantly share code, notes, and snippets.

@murphysean
Created August 27, 2014 02:32
Show Gist options
  • Save murphysean/380965f88d207a440ee0 to your computer and use it in GitHub Desktop.
Save murphysean/380965f88d207a440ee0 to your computer and use it in GitHub Desktop.
MySQL Resource Template
<Context>
<Resource
name="jdbc/example"
auth="Container"
driverClassName="com.mysql.jdbc.Driver"
initialSize="0"
maxActive="15"
maxIdle="3"
minIdle="0"
maxWait="-1"
validationQuery="SELECT 1"
testOnBorrow="true"
removeAbandoned="true"
removeAbandonedTimeout="60"
username="username"
password="password"
type="javax.sql.DataSource"
url="jdbc:mysql://db.example.com:3306/schema?useUnicode=yes&#038;characterEncoding=UTF-8"/>
</Context>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment