JPA Transient Annotation and JSON

后端 未结 10 1413
无人共我
无人共我 2020-11-29 03:03

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

10条回答
  •  隐瞒了意图╮
    2020-11-29 03:19

    I simply added JsonSerialize and JsonDeserialize annotations.

    @Transient
    @JsonSerialize
    @JsonDeserialize
    private String myField;
    

提交回复
热议问题