I am doing some big queries on my database with Hibernate and I sometimes hit timeouts. I would like to avoid setting the timeout manually on every Query
or Criteria
.
Is there any property I can give to my AnnotationConfiguration
that would set an acceptable default for all queries I run?
If not, how can I set a default timeout value on Hibernate queries?