Quantcast
Channel: Revolução Java » Hibernate
Viewing all articles
Browse latest Browse all 5

Atualize-se – AnnotationsConfiguration Deprecated Hibernate 3.6

$
0
0

Versão 3.2

public class DAO {

private static final SessionFactory sessionFactory = new AnnotationConfiguration().configure().buildSessionFactory();

}

Versão 3.6

public class DAO {

private static final SessionFactory sessionFactory = new Configuration().configure().buildSessionFactory();

}

Mais detalhes em: www.hibernate.org


Viewing all articles
Browse latest Browse all 5