2017-04-20 18:25:34 +05:30
|
|
|
package com.baeldung.hibernate;
|
|
|
|
|
2017-10-29 11:43:08 +01:00
|
|
|
import com.baeldung.hibernate.pojo.Employee;
|
|
|
|
import com.baeldung.hibernate.pojo.EntityDescription;
|
2017-11-10 13:33:52 +02:00
|
|
|
import com.baeldung.hibernate.pojo.OrderEntry;
|
|
|
|
import com.baeldung.hibernate.pojo.OrderEntryIdClass;
|
|
|
|
import com.baeldung.hibernate.pojo.OrderEntryPK;
|
|
|
|
import com.baeldung.hibernate.pojo.Product;
|
2017-10-29 11:43:08 +01:00
|
|
|
import com.baeldung.hibernate.pojo.Phone;
|
2017-11-04 11:50:01 +01:00
|
|
|
import com.baeldung.hibernate.pojo.TemporalValues;
|
2017-11-10 13:33:52 +02:00
|
|
|
import com.baeldung.hibernate.pojo.Course;
|
|
|
|
import com.baeldung.hibernate.pojo.Student;
|
|
|
|
import com.baeldung.hibernate.pojo.User;
|
|
|
|
import com.baeldung.hibernate.pojo.UserProfile;
|
|
|
|
|
2017-04-20 18:25:34 +05:30
|
|
|
import org.hibernate.SessionFactory;
|
2017-10-29 11:43:08 +01:00
|
|
|
import org.hibernate.boot.Metadata;
|
|
|
|
import org.hibernate.boot.MetadataSources;
|
|
|
|
import org.hibernate.boot.registry.StandardServiceRegistryBuilder;
|
|
|
|
import org.hibernate.service.ServiceRegistry;
|
|
|
|
|
|
|
|
import java.io.FileInputStream;
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.net.URL;
|
|
|
|
import java.util.Properties;
|
2017-04-20 18:25:34 +05:30
|
|
|
|
|
|
|
public class HibernateUtil {
|
2017-10-29 11:43:08 +01:00
|
|
|
private static SessionFactory sessionFactory;
|
|
|
|
|
|
|
|
public static SessionFactory getSessionFactory() throws IOException {
|
|
|
|
if (sessionFactory == null) {
|
|
|
|
ServiceRegistry serviceRegistry = configureServiceRegistry();
|
|
|
|
sessionFactory = makeSessionFactory(serviceRegistry);
|
|
|
|
}
|
|
|
|
return sessionFactory;
|
|
|
|
}
|
2017-04-20 18:25:34 +05:30
|
|
|
|
2017-10-29 11:43:08 +01:00
|
|
|
private static SessionFactory makeSessionFactory(ServiceRegistry serviceRegistry) {
|
|
|
|
MetadataSources metadataSources = new MetadataSources(serviceRegistry);
|
|
|
|
metadataSources.addPackage("com.baeldung.hibernate.pojo");
|
|
|
|
metadataSources.addAnnotatedClass(Employee.class);
|
|
|
|
metadataSources.addAnnotatedClass(Phone.class);
|
|
|
|
metadataSources.addAnnotatedClass(EntityDescription.class);
|
2017-11-04 11:50:01 +01:00
|
|
|
metadataSources.addAnnotatedClass(TemporalValues.class);
|
2017-11-10 13:33:52 +02:00
|
|
|
metadataSources.addAnnotatedClass(User.class);
|
|
|
|
metadataSources.addAnnotatedClass(Student.class);
|
|
|
|
metadataSources.addAnnotatedClass(Course.class);
|
|
|
|
metadataSources.addAnnotatedClass(Product.class);
|
|
|
|
metadataSources.addAnnotatedClass(OrderEntryPK.class);
|
|
|
|
metadataSources.addAnnotatedClass(OrderEntry.class);
|
|
|
|
metadataSources.addAnnotatedClass(OrderEntryIdClass.class);
|
|
|
|
metadataSources.addAnnotatedClass(UserProfile.class);
|
2017-04-20 18:25:34 +05:30
|
|
|
|
2017-10-29 11:43:08 +01:00
|
|
|
Metadata metadata = metadataSources.buildMetadata();
|
|
|
|
return metadata.getSessionFactoryBuilder()
|
|
|
|
.build();
|
2017-04-20 18:25:34 +05:30
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-10-29 11:43:08 +01:00
|
|
|
private static ServiceRegistry configureServiceRegistry() throws IOException {
|
|
|
|
Properties properties = getProperties();
|
|
|
|
return new StandardServiceRegistryBuilder().applySettings(properties)
|
|
|
|
.build();
|
2017-04-20 18:25:34 +05:30
|
|
|
}
|
2017-10-29 11:43:08 +01:00
|
|
|
|
|
|
|
private static Properties getProperties() throws IOException {
|
|
|
|
Properties properties = new Properties();
|
|
|
|
URL propertiesURL = Thread.currentThread()
|
|
|
|
.getContextClassLoader()
|
|
|
|
.getResource("hibernate.properties");
|
|
|
|
try (FileInputStream inputStream = new FileInputStream(propertiesURL.getFile())) {
|
|
|
|
properties.load(inputStream);
|
|
|
|
}
|
|
|
|
return properties;
|
|
|
|
}
|
|
|
|
|
2017-04-20 18:25:34 +05:30
|
|
|
}
|