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
In my needs, the POJO has some property which link directly to another POJO. From .net background, I believe it's called lazy-loading prop. My workaround is available so you can consider this as suggestion.
class Person {
...
}
class Teacher {
@Id
private int personId
...
// this prop is null in json file, I would love to have it deleted
public Person person;
}
The text was updated successfully, but these errors were encountered:
In my needs, the POJO has some property which link directly to another POJO. From .net background, I believe it's called lazy-loading prop. My workaround is available so you can consider this as suggestion.
The text was updated successfully, but these errors were encountered: