You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have tried @transient on basic Java type like String or Int , it works ok.
But when i try @transient on field with Java Class type having getter/setter , it return error.
@Transient
private Office office;
public Office getOffice(){...}