You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue documented as fixed at FasterXML/jackson-module-mrbean#20 remains a problem in MrBean 2.7.4. It doesn't occur just during serialization. Any materialized bean appears to have duplicated properties, even when not used for serialization. If we have this
interfaceA {
Stringa;
intb;
}
the following materialized object will be seen in a debugger.
{
Stringa;
intb;
String_a;
int_b;
}
The text was updated successfully, but these errors were encountered:
rethwischk
changed the title
Materialized beans duplicate properties by prefixing an underscore
(mrbean) materialized beans duplicate properties by prefixing an underscore
Aug 30, 2016
@rethwischk Code does not prepend _ any more, so I don't see how this could happen. Are you 100% sure there is no possibility of having an older version in the classpath?
At this point I would need a reproduction of some kind as I can not reproduce the problem you are seeing.
The issue documented as fixed at FasterXML/jackson-module-mrbean#20 remains a problem in MrBean 2.7.4. It doesn't occur just during serialization. Any materialized bean appears to have duplicated properties, even when not used for serialization. If we have this
the following materialized object will be seen in a debugger.
The text was updated successfully, but these errors were encountered: