The session seems open immediately before the child objects are referenced, but there is no record of the specific child object set (even though other child objects are included) in the session's persistence context map of collections (org.hibernate.engineStatefulPersistenceContext.collectionEntries).
The relationship between the parent and child entity is defined by the following:
@Audited(targetAuditMode = RelationTargetAuditMode.NOT_AUDITED)
@ManyToMany
@JoinTable(name="rt_vacancy_check",
joinColumns = @JoinColumn(name="vacancy_id"),
inverseJoinColumns = @JoinColumn(name="check_name")
)
@BatchSize(size = 10)
private Set<PreEmployCheck> preEmployChecks = new HashSet<PreEmployCheck>();
What possible reasons could there be for this to trigger a LazyInitializationException?