Skip to content

Instantly share code, notes, and snippets.

@samuelsonbrito
Created December 16, 2014 02:43
Show Gist options
  • Save samuelsonbrito/960555754a9effe42184 to your computer and use it in GitHub Desktop.
Save samuelsonbrito/960555754a9effe42184 to your computer and use it in GitHub Desktop.
private Usuario buscaUsuario(int id) {
EntityManager entityManager = getEntityManager();
Usuario usuario = entityManager.find(Usuario.class, id);
entityManager.close();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment