Created
June 19, 2018 23:50
-
-
Save LiamKarlMitchell/01f38d6e20d12ed8a4f9409dfbd8610d to your computer and use it in GitHub Desktop.
Useful Hibernate Java things
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Prevent locking up forever if trying to connect when db is not available. | |
Set the c3p0.checkoutTime to something other than 0 so that it stops trying to connect at some point. | |
<property name="hibernate.c3p0.acquireRetryAttempts">2</property> | |
<property name="hibernate.c3p0.acquireRetryDelay">10</property> | |
<property name="hibernate.c3p0.checkoutTimeout">1000</property> | |
<property name="show_sql">false</property> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment