Closed fab29plou closed 1 year ago
If I use @JsonApiMeta on some field of a base class, then it is not seen when this base class is inherited on the real resource class.
@JsonApiMeta
Line 222 of of JsonApiData.java should use getAllDeclaredFields() and not getDeclaredFields()
getAllDeclaredFields()
getDeclaredFields()
Thx for reporting this. I will create a test and fix it asap.
released with version 2.0.4
If I use
@JsonApiMeta
on some field of a base class, then it is not seen when this base class is inherited on the real resource class.Line 222 of of JsonApiData.java should use
getAllDeclaredFields()
and notgetDeclaredFields()