Hi
This seems uber simple which is why it is baffling me.
I have a Boolean variable that keeps changing to true when it is read.
I have a property <property name="suspended" type="java.lang.Boolean" not-null="true"/>
It is set to false which I can see that has taken effect in the database but then when I read the object back Hibernate sets the value to try
I have a brake point on
Code:
public void setSuspended (java.lang.Boolean suspended) {
this.suspended = suspended;
}
And see that is where it is being set when the object is initialised.
The first write and the following read are done in different transactions.
Any ideas even what to look at?
Cheers