Slide 30
Slide 30 text
Jackson
Actor
class Actor {
@JsonIgnoreProperties("actors")
public List movies;
}
Entity
uuid
createdAt
title
actors
Movie
{"uuid":"xxxx",
"createdAt":[2023,9,5,11,2,8,999000000],
"title":"The Matrix",
"actors":[{"uuid":"yyyy",
"createdAt":[2023,9,5,11,2,9,1000000],
"name":"Your next Superstar",
"dob":"1982-03-14",
"internationalActive":true,
"movies":[{"uuid":"xxxx",
"createdAt":[2023,9,5,11,2,8,999000000],
"title":"The Matrix"}
]
}
]
}