eriezelagera

Tomcat WebApp Context

Dec 9th, 2013
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.54 KB | None | 0 0
  1. <!-- PostgreSQL -->
  2. <Resource name="jdbc/DatabaseNameDS" auth="Container"
  3.     type="javax.sql.DataSource"
  4.     maxActive="20" maxIdle="5" maxWait="10000"
  5.     username="username" password="password"
  6.     driverClassName="org.postgresql.Driver"
  7.     url="jdbc:postgresql://localhost/database"/>   
  8.  
  9. <!-- MySQL -->
  10. <Resource name="jdbc/DatabaseNameDS" auth="Container"
  11.     type="javax.sql.DataSource"
  12.     maxActive="20" maxIdle="5" maxWait="10000"
  13.     username="username" password="password"
  14.     driverClassName="com.mysql.jdbc.Driver"
  15.     url="jdbc:mysql://localhost/database"/>
Advertisement
Add Comment
Please, Sign In to add comment