-
-
Save geosava/554a3cdebd70108e2e20 to your computer and use it in GitHub Desktop.
Method to unproxy an object from hibernate proxy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@SuppressWarnings("unchecked") | |
protected T unproxy(T entity){ | |
if (entity == null) { | |
return null; | |
} | |
if (entity instanceof HibernateProxy) { | |
try { | |
Hibernate.initialize(entity); | |
} catch (ObjectNotFoundException e) { | |
return null; | |
} | |
entity = (T) ((HibernateProxy) entity).getHibernateLazyInitializer().getImplementation(); | |
} | |
return entity; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment