Advertisement
Guest User

Untitled

a guest
Sep 7th, 2017
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. hibernate.dialect=org.hibernate.dialect.MySQLDialect
  2. hibernate.connection.driver_class=com.mysql.jdbc.Driver
  3. hibernate.connection.username=root
  4. hibernate.connection.password=root
  5. hibernate.connection.url=jdbc:mysql://<ip of docker>:3306/studentdb?autoreconnect=true&zeroDateTimeBehavior=convertToNull&jdbcCompliantTruncation=false
  6. show_sql=false
  7. hibernate.jdbc.use_streams_for_binary=false
  8. hibernate.dbcp.testOnBorrow=true
  9. hibernate.dbcp.validationQuery=SELECT 1 FROM DUAL
  10. hibernate.dbcp.testOnReturn=false
  11. hibernate.dbcp.maxWait=2000
  12. hibernate.dbcp.testWhileIdle=true
  13. hibernate.dbcp.minEvictableIdleTimeMillis=1800000
  14. hibernate.dbcp.timeBetweenEvictionRunsMillis=300000
  15. hibernate.dbcp.numTestsPerEvictionRun=5
  16. hibernate.dbcp.removeAbandoned=true
  17. hibernate.dbcp.removeAbandonedTimeout=90
  18. hibernate.dbcp.logAbandoned=true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement