LinhSaysHi, wykonałem Twój kod za pomocą Hibernate 5 i mam dokładnie ten sam błąd. Wykonałem go za pomocą Hibernate 4 i nie ma problemu.
Samouczek dotyczący Pluralsight został stworzony dla Hibernate 4. Oto generator sesji, który współpracuje z Hibernate 5:
public class HibernateUtilities_5 {
private static final SessionFactory sessionFactory = buildSessionFactory();
private static SessionFactory buildSessionFactory() {
try {
StandardServiceRegistry standardRegistry = new StandardServiceRegistryBuilder()
.configure("hibernate.cfg.xml").build();
Metadata metadata = new MetadataSources(standardRegistry).getMetadataBuilder().build();
return metadata.getSessionFactoryBuilder().build();
} catch (HibernateException he) {
System.out.println("Session Factory creation failure");
throw he;
}
}
public static SessionFactory getSessionFactory() {
return sessionFactory;
}
}