Advertisement
Guest User

Untitled

a guest
Jul 19th, 2013
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.21 KB | None | 0 0
  1. public void insert(Person person) {
  2.         Session session = getSessionFactory().getCurrentSession();
  3.         session.beginTransaction();
  4.         session.save(person);
  5.         session.getTransaction().commit();
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement