[
http://opensource.atlassian.com/projects/hibernate/browse/ANN-782?page=co...
]
Steve Ebersole closed ANN-782.
------------------------------
Assignee: Steve Ebersole
Resolution: Won't Fix
This issue *should* just resolve itself with Hibernate Core 3.3.2, because we migrated to
cglib-2.2 (HHH-3504,HHH-3832) and so
"net.sf.cglib.transform.impl.InterceptFieldCallback" here should be valid once
again. Closing for now; re-open or open a new one if you still see this with Hibernate
Core 3.3.2
InterceptFieldCallback is being mapped again since its package
changed in Hibernate core 3.3.1
----------------------------------------------------------------------------------------------
Key: ANN-782
URL:
http://opensource.atlassian.com/projects/hibernate/browse/ANN-782
Project: Hibernate Annotations
Issue Type: Bug
Components: binder
Affects Versions: 3.4.0.GA
Reporter: Alex Gitelman
Assignee: Steve Ebersole
Hibernate-core generate fields of type
'org.hibernate.repackage.cglib.transform.impl.InterceptFieldCallback' instead of
net.sf package, therefore fix from ANN-133 can't work
From AnnotationBinder:
{code}
private static boolean mustBeSkipped(XProperty property, ExtendedMappings mappings) {
//TODO make those hardcoded tests more portable (through the bytecode provider?)
return property.isAnnotationPresent( Transient.class )
|| "net.sf.cglib.transform.impl.InterceptFieldCallback".equals(
property.getType().getName() )
|| "org.hibernate.bytecode.javassist.FieldHandler".equals(
property.getType().getName() );
}
{code}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://opensource.atlassian.com/projects/hibernate/secure/Administrators....
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira