Hi,
We have scenario where we need to ignore values on de-serializing from JSON to Java object ( or basically, it's a read only value field).
As recommended when using Jackson 1.9 and higher, we add:
1. @JsonIgnore on the member variable and the setter method
2. @JsonProperty on the getter method.
It works, however the field is not showing up in swagger. Even though it's a read only field, we still want the field to show in the model schema in the swagger documentation.
We are using swagger-jersey2-jaxrs_2.10 version 1.3.7. I tried to upgrade to version 1.3.12, but still the same issue.
Can you help? Is it a bug or known issue?
Thanks,
Leny