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
Since no other solution here worked for me, let me post my solution how it did the trick for me:
@Transient
@JsonSerialize
private String mapImageSrc;
This seems to be the best solution to me as the @JsonSerialize
annotation has been made for that use case.
Try @JsonView after adding @Transient
use @JsonIgnore in com.fasterxml.jackson.annotation there also is @JsonFormat for Date variable. works for me
I use both @Transient and @JsonProperty, then it works!
@Transient
@JsonProperty
private String mapImageSrc;