Guest User

Untitled

a guest
Apr 13th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
  2. <property name="driverClass">
  3. <value>com.mysql.jdbc.Driver</value>
  4. </property>
  5. <property name="jdbcUrl">
  6. <value>jdbc:mysql://localhost/springproject</value>
  7. </property>
  8. <property name="user">
  9. <value>root</value>
  10. </property>
  11. <property name="password">
  12. <value>tiger1</value>
  13. </property>
  14. <!-- Connection pool code start -->
  15. <property name="testConnectionOnCheckin" value="true" />
  16. <property name="checkoutTimeout">
  17. <value>600000</value>
  18. </property>
  19. <property name="maxIdleTime">
  20. <value>30</value>
  21. </property>
  22. <property name="maxPoolSize">
  23. <value>50</value>
  24. </property>
  25. <property name="minPoolSize">
  26. <value>5</value>
  27. </property>
  28. <property name="initialPoolSize">
  29. <value>5</value>
  30. </property>
  31. <property name="unreturnedConnectionTimeout">
  32. <value>50</value>
  33. </property>
  34. <property name="maxStatements" value="2000" />
  35. <property name="idleConnectionTestPeriod" value="30" />
  36. <property name="automaticTestTable" value="c3p0_con_test" />
  37. <!-- Connection pool code end -->
  38. </bean>
Add Comment
Please, Sign In to add comment