Skip to content

Instantly share code, notes, and snippets.

@jaehoo
Created July 12, 2014 19:31
Show Gist options
  • Save jaehoo/1b31273dbbe4b9f49a8d to your computer and use it in GitHub Desktop.
Save jaehoo/1b31273dbbe4b9f49a8d to your computer and use it in GitHub Desktop.
Refresh JPA Cache
@PersistenceContext
private EntityManager emf;
@Override
public void refreshJPACache() {
emf.clear();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment