I am trying to migrate my 3.1 app to 3.1.3 but encountered a strange migration issue (yes, I read the migration page).
When making some database queries, I get a StackOverflow:
Code:
Caused by: java.lang.StackOverflowError
at java.lang.reflect.InvocationTargetException.<init>(InvocationTargetException.java:54)
at sun.reflect.GeneratedMethodAccessor52.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.hibernate.jdbc.BorrowedConnectionProxy.invoke(BorrowedConnectionProxy.java:40)
at $Proxy0.getAutoCommit(Unknown Source)
....
I am clueless, please help!
Axel