Hi,
if have set hibernate.cglib.use_reflection_optimizer=false in hibernate.properties. I know it is correctly taken into account because when hibernate starts it doesn't output "Using CGLIB...".
I have a bean which is described in the mapping file as:
<hibernate-mapping>
<class name="Bean" table="TABLE_NAME" lazy="true">
.
.
.
.
</class>
</hibernate-mapping>
When Hibernate starts, it is looking for CGLIB classes...to enhance the class...
I thought setting hibernate.cglib.use_reflection_optimizer=false should disable code enhancement?
I'm I wrong somewhere???
|