Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. public class CriadorDeSession {
  2.  
  3. public static Session getSession() throws HibernateException {
  4. AnnotationConfiguration configuration = new AnnotationConfiguration();
  5. configuration.configure();
  6. SessionFactory factory = configuration.buildSessionFactory();
  7. Session session = factory.openSession();
  8. return session;
  9. }
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement