Posts by Kelvin Santiago • 21 points
2 posts
-
1
votes2
answers1543
viewsA: Aggregation in Java
First you should change to the list of Teacher Disciplines, since a teacher can teach several subjects: private List<Disciplina> disciplinas = new ArrayList<>(); You can create a method…
-
1
votes0
answers94
viewsQ: How to initialize Hibernate with Reflection
Hello, I need to initialize a list using Hibernate.initialize(list) within a Generic DAO. User Model @Entity public class Usuario { @Expose @ManyToMany(cascade = {CascadeType.PERSIST,…