BasicClassIntrospector.forSerialization(...).findProperties
should respect MapperFeature.AUTO_DETECT_GETTERS/SETTERS
#1223
Milestone
When I set the ObjectMapper MapperConfig to not AutoDetect and use the BasicClassIntrospector to get the properties, I seem to still be getting the Methods. I am currently using version 2.7.3.
The following code produces this output:
Found property count 2, there should only be one??
Found property: name=name, internalName=name
Found property: name=groupname, internalName=groupname
I think it should produce only this output:
Found property: name=groupname, internalName=groupname
The text was updated successfully, but these errors were encountered: