Hibernate ManyToMany without loading objects?

Use Session.load() or EntityManager.getReference() This will just return a proxy to the actual Address entity, without loading anything from the database.

Use Session.load() or EntityManager.getReference(). This will just return a proxy to the actual Address entity, without loading anything from the database. Address address = (Address) session.

Load(Address. Class, addressId); // address is a proxy. It will be lazy-loaded only if you invoke a method on it.

Thanks! When I save will hibernate be smart enough not to try to load the proxy? – bernatorNoob Nov 18 at 18:31 Yes.

The point of this method is exactly what you're trying to do: store the reference to an existing entity in another one. – JB Nizet Nov 18 at 18:33.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions