Josh Holthaus
Results
1
comments of
Josh Holthaus
Here is a workaround that seems to resolve the cyclic dependency by ignoring the readOnly() method. ``` import io.swagger.models.properties.AbstractProperty; import io.swagger.models.properties.Property; static { ObjectMapper mapper = io.swagger.util.Json.mapper(); mapper.addMixIn(AbstractProperty.class, AbstractPropertyMixin.class); }...