-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Closed
Milestone
Description
in BeanUtil.isCglibGetCallbacks
the callbacks is not detected because spring repackages cglib: org.springframework.cglib....
changing:
if (pname.startsWith("net.sf.cglib")
// also, as per [JACKSON-177]
|| pname.startsWith("org.hibernate.repackage.cglib")) {
return true;
}
to:
if (pname.contains("cglib") // also, as per [JACKSON-177]
) {
return true;
}
would work, with the disadvantage or other cglib name usages....
Metadata
Metadata
Assignees
Labels
No labels