This is a follow up to the following question on the JPA Transient annotation Why does JPA have a @Transient annotation?
I have a transient variable that I do not wa
In my case only works with this:
@Transient @JsonGetter(value = "transientProperty") public String getSomething() { return something; }
I hope this can be useful for someone. Regards.