In my spring config:
<prop key="hibernate.transaction.factory_class">org.hibernate.transaction.JDBCTransactionFactory</prop>
Type: Posts; User: perman; Keyword(s):
In my spring config:
<prop key="hibernate.transaction.factory_class">org.hibernate.transaction.JDBCTransactionFactory</prop>
I don't use JTA so I don't think I'd be much help
I just have a byte[] in my domain object:
private byte[] _data;
And map it with the spring user type
<property name="_data"
Just in case anyone else happened to see this behavior, upgrading to Spring 1.2.2 appears to have solved it.
Wouldn't this result in an exception even if the 3rd password attempt was correct?
In the interests of brevity, I won't post all my config files here, but if anyone thinks it will help I'd be glad to expand on them.
Oracle: 10.1.0.3
Hibernate: 3.0.5
Spring: 1.2.1
I'm...