I have a domain class Loan.java with a field which is not persisted:
@JsonInclude()
@Transient
private LoanRating loanRating;
/* (Public) Getters and setters for that field are available as well */
However, the field does not get serialized - I don't see it on Frontend. I'm doing the serialization with Jackson.
Any ideas what I'm doing wrong?
If you need more information, please tell me and I'll post additional code :)