Skip to content

Instantly share code, notes, and snippets.

@LiamKarlMitchell
Created June 19, 2018 23:50
Show Gist options
  • Save LiamKarlMitchell/01f38d6e20d12ed8a4f9409dfbd8610d to your computer and use it in GitHub Desktop.
Save LiamKarlMitchell/01f38d6e20d12ed8a4f9409dfbd8610d to your computer and use it in GitHub Desktop.
Useful Hibernate Java things
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