All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jlot.hibernate.repository.RepositoryHibernate Maven / Gradle / Ivy

The newest version!
package org.jlot.hibernate.repository;

import javax.inject.Inject;

import org.hibernate.Session;
import org.hibernate.SessionFactory;

public abstract class RepositoryHibernate
{
	@Inject
	private SessionFactory	sessionFactory;

	protected Session getSession ( )
	{
		return sessionFactory.getCurrentSession();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy