Posts by W. Silva • 39 points
3 posts
-
0
votes0
answers110
views -
3
votes1
answer130
viewsA: Relationship 1:N in Java
I managed to solve the problem, I’ll leave the answer here if you need. Class Client: @OneToMany(mappedBy = "cliente") private List<AtividadeSecundaria> atividadeSecundaria; Class Activity:…
-
0
votes1
answer130
viewsQ: Relationship 1:N in Java
I have an API and I’m creating a relationship between Cliente and AtividadeSecundaria, where a client has several activities and the activities belong to a client, however, when I make the…