Skip to content

Fix: Jackson needs a setter for properties

Jamie Tanna requested to merge defect/setterless into develop

It appears that Jackson doesn't like having no setter available for tags on the root object:

com.fasterxml.jackson.databind.exc.InvalidDefinitionException:
Problem deserializing 'setterless' property 'tags': get method
returned null

The quickest solution is to add a setter, which sets it in the Properties, as the getter currently works.

Merge request reports