Skip to content

Instantly share code, notes, and snippets.

@mygithub45
mygithub45 / jpa-cheatsheet.java
Created March 10, 2023 05:39 — forked from jahe/jpa-cheatsheet.java
JPA Cheatsheet
/*
JPA (Java Persistence API)
Transaction Management with an Entity-Mananger:
---
entityManager.getTransaction().begin();
entityManager.persist(<some-entity>);
entityManager.getTransaction().commit();
entityManager.clear();