Guest User

Untitled

a guest
Feb 17th, 2018
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. <datasources-configuration>
  2. <datasources>
  3. <datasource>
  4. <name>MySQL</name>
  5. <description>My DataSource</description>
  6. <jndiConfig>
  7. <name>jdbc/MySQL</name>
  8. </jndiConfig>
  9. <definition type="RDBMS">
  10. <configuration>
  11. <url>jdbc:mysql://localhost:3306/db</url>
  12. <username>root</username>
  13. <password>root</password>
  14. <driverClassName>com.mysql.jdbc.Driver</driverClassName>
  15. <maxActive>50</maxActive>
  16. <maxWait>60000</maxWait>
  17. <testOnBorrow>true</testOnBorrow>
  18. <validationQuery>SELECT 1</validationQuery>
  19. <validationInterval>30000</validationInterval>
  20. <defaultAutoCommit>false</defaultAutoCommit>
  21. </configuration>
  22. </definition>
  23. </datasource>
  24. </datasources>
  25. </datasources-configuration>
Add Comment
Please, Sign In to add comment