Difference between revisions of "Instance creator setup"
Jump to navigation
Jump to search
old>Admin (Created page with " <?xml version="1.0" encoding="UTF-8"?> <Context docBase="@DOCBASE@" swallowOutput="true"> <Resource name="jdbc/TempusServaLive" auth="Container" type="javax.sql.DataSo...") |
old>Admin |
||
Line 4: | Line 4: | ||
<Context docBase="@DOCBASE@" swallowOutput="true"> | <Context docBase="@DOCBASE@" swallowOutput="true"> | ||
<Resource name="jdbc/TempusServaLive" auth="Container" type="javax.sql.DataSource" | <Resource name="jdbc/TempusServaLive" auth="Container" type="javax.sql.DataSource" | ||
maxActive="80" maxIdle="30" maxWait="2000" | |||
removeAbandoned="true" removeAbandonedTimeout="60" logAbandoned="true" | |||
username="@USERNAME@" password="@PASSWORD@" driverClassName="com.mysql.jdbc.Driver" | username="@USERNAME@" password="@PASSWORD@" driverClassName="com.mysql.jdbc.Driver" | ||
url="jdbc:mysql://localhost:3306/@DBLIVE@?autoReconnect=true" | url="jdbc:mysql://localhost:3306/@DBLIVE@?autoReconnect=true" |
Revision as of 13:42, 24 May 2018
<?xml version="1.0" encoding="UTF-8"?> <Context docBase="@DOCBASE@" swallowOutput="true"> <Resource name="jdbc/TempusServaLive" auth="Container" type="javax.sql.DataSource" maxActive="80" maxIdle="30" maxWait="2000" removeAbandoned="true" removeAbandonedTimeout="60" logAbandoned="true"
username="@USERNAME@" password="@PASSWORD@" driverClassName="com.mysql.jdbc.Driver" url="jdbc:mysql://localhost:3306/@DBLIVE@?autoReconnect=true"
/> <Resource name="jdbc/TempusServaTest" auth="Container" type="javax.sql.DataSource"
maxActive="5" maxIdle="3" maxWait="10000" logAbandoned="true" username="@USERNAME@" password="@PASSWORD@" driverClassName="com.mysql.jdbc.Driver" url="jdbc:mysql://localhost:3306/@DBTEST@?autoReconnect=true"
/> </Context>