Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save david-oc-miller/07927b2bee469a035721898f8210b30a to your computer and use it in GitHub Desktop.

Select an option

Save david-oc-miller/07927b2bee469a035721898f8210b30a to your computer and use it in GitHub Desktop.
public class SaveItemService
{
@PersistenceContext
private EntityManager em;
@Transactional(propagation = Propagation.REQUIRED)
public Item save(Item toSave)
{
Item saved = em.merge(toSave);
return saved;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment