I have this relation in my "Persona" entity
@OneToOne(cascade = CascadeType.ALL, fetch = FetchType.EAGER, mappedBy = "persona")
private Empleado empleado;
In my "Empleado" entity i have this relation
@OneToMany(cascade = CascadeType.ALL, mappedBy = "empleado", fetch = FetchType.EAGER)
private Set<Trabajo> trabajos = new HashSet<Trabajo>();
And I have in my "Trabajo" entity this relation
@BatchSize(size = 100)
@OneToMany(cascade = CascadeType.ALL, mappedBy = "trabajo", fetch = FetchType.LAZY)
private Set<Atencion> atenciones = new HashSet<Atencion>();
And this login method provided by GoogleCode
@Override
public Persona acceder(String login, String password) {
Search s = new Search();
s.addFilterEqual("usuario", login);
s.addFilterEqual("clave", password);
return searchUnique(s);
}
When i get the result object it has loaded the objects who have the EAGER fecth, everithing its ok except in the "Trabajo" entity the "Atenciones" set gets loaded eather it has the LAZY fecth. Why i can fix this ?
In my Trabajo entity i have other @OneToMany relationships that has LAZY fecth and there still get loading objects i dont know why.
EDIT: When I use the dozer mapperService it mapper all the entire tree objects and i can see all the objects that have not suposse to appear