I am trying to set the default isolation level for a grails app.
In my conf/app/hibernate/hibernate.cfg.xml I have this specified:
<session-factory>
<property name="hibernate.connection.isolation">4</property>
<property name="connection.isolation">4</property>
</session-factory>
Unfortunately, when I check the actual connection isolation from the datasource, its still read_committed (2).
Is this just not supported in Grails 1.3.X?
Am I missing something else?
Yes, I know I specified it twice, the doc is a touch unclear and there are extant examples of both forms being used...
Thanks, -Clark,