I have the following questions:
a) I used an User/Address database where User has a many to one relationship with address (an user can have one address)
Code:
<many-to-one name="address"
column="UT_ADDRESS"
class="com.ggs.sso.implementation.AddressImpl"
lazy ="false" >
</many-to-one>
with lazy = "false".
I was sure that the "proxy" would be not present inside my bean for the property address instead it seems that the lazy property has been ignored at all.
I have put lazy=false at the class level also. No better result.
any Idea?
thanks