Advertisement
Guest User

Untitled

a guest
May 5th, 2015
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. <?xml version='1.0' encoding='UTF-8' ?>
  2. <Context reloadable="true">
  3. <!--
  4. maxActive: Maximum number of dB connections in pool. Set to -1 for no limit.
  5. maxIdle: Maximum number of idle dB connections to retain in pool. Set to -1 for no limit.
  6. maxWait: Maximum milliseconds to wait for a dB connection to become available
  7. Set to -1 to wait indefinitely.
  8. -->
  9. <Resource name="jdbc/BoardDB" auth="Container" type="javax.sql.DataSource"
  10. maxActive="100" maxIdle="30" maxWait="10000" removeAbandoned="true"
  11. username="root" password="1234" driverClassName="com.mysql.jdbc.Driver"
  12. url="jdbc:mysql://localhost:3306/Board_study" />
  13. </Context>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement