What does Hibernate.initialize do? Usually referred documentation talk only about
Hibernate.initialize(entity.lazyCollection)
Is ther
Hibernate in some cases returns proxy object like lazy collection or Session.load() etc. So if you have proxy object and want the real one you can manually initialize it.