2015-05-31 11:55:18 +03:00
|
|
|
package com.iluwatar.servicelayer.common;
|
2015-04-12 23:49:00 +03:00
|
|
|
|
2015-04-13 21:22:03 +03:00
|
|
|
import java.lang.reflect.ParameterizedType;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import org.hibernate.Criteria;
|
|
|
|
import org.hibernate.Session;
|
|
|
|
import org.hibernate.Transaction;
|
|
|
|
import org.hibernate.criterion.Restrictions;
|
|
|
|
|
2015-05-31 11:55:18 +03:00
|
|
|
import com.iluwatar.servicelayer.hibernate.HibernateUtil;
|
2015-04-15 21:45:14 +03:00
|
|
|
|
2015-04-15 22:29:04 +03:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Base class for Dao implementations.
|
|
|
|
*
|
|
|
|
* @param <E>
|
|
|
|
*
|
|
|
|
*/
|
2015-04-13 22:36:52 +03:00
|
|
|
public abstract class DaoBaseImpl<E extends BaseEntity> implements Dao<E> {
|
2015-04-12 23:49:00 +03:00
|
|
|
|
2015-11-01 21:29:13 -05:00
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
protected Class<E> persistentClass = (Class<E>) ((ParameterizedType) getClass()
|
|
|
|
.getGenericSuperclass()).getActualTypeArguments()[0];
|
|
|
|
|
|
|
|
protected Session getSession() {
|
|
|
|
return HibernateUtil.getSessionFactory().openSession();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public E find(Long id) {
|
|
|
|
Session session = getSession();
|
|
|
|
Transaction tx = null;
|
|
|
|
E result = null;
|
|
|
|
try {
|
|
|
|
tx = session.beginTransaction();
|
|
|
|
Criteria criteria = session.createCriteria(persistentClass);
|
|
|
|
criteria.add(Restrictions.idEq(id));
|
|
|
|
result = (E) criteria.uniqueResult();
|
|
|
|
tx.commit();
|
|
|
|
} catch (Exception e) {
|
|
|
|
if (tx != null)
|
|
|
|
tx.rollback();
|
|
|
|
throw e;
|
|
|
|
} finally {
|
|
|
|
session.close();
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void persist(E entity) {
|
|
|
|
Session session = getSession();
|
|
|
|
Transaction tx = null;
|
|
|
|
try {
|
|
|
|
tx = session.beginTransaction();
|
|
|
|
session.persist(entity);
|
|
|
|
tx.commit();
|
|
|
|
} catch (Exception e) {
|
|
|
|
if (tx != null)
|
|
|
|
tx.rollback();
|
|
|
|
throw e;
|
|
|
|
} finally {
|
|
|
|
session.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public E merge(E entity) {
|
|
|
|
Session session = getSession();
|
|
|
|
Transaction tx = null;
|
|
|
|
E result = null;
|
|
|
|
try {
|
|
|
|
tx = session.beginTransaction();
|
|
|
|
result = (E) session.merge(entity);
|
|
|
|
tx.commit();
|
|
|
|
} catch (Exception e) {
|
|
|
|
if (tx != null)
|
|
|
|
tx.rollback();
|
|
|
|
throw e;
|
|
|
|
} finally {
|
|
|
|
session.close();
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void delete(E entity) {
|
|
|
|
Session session = getSession();
|
|
|
|
Transaction tx = null;
|
|
|
|
try {
|
|
|
|
tx = session.beginTransaction();
|
|
|
|
session.delete(entity);
|
|
|
|
tx.commit();
|
|
|
|
} catch (Exception e) {
|
|
|
|
if (tx != null)
|
|
|
|
tx.rollback();
|
|
|
|
throw e;
|
|
|
|
} finally {
|
|
|
|
session.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public List<E> findAll() {
|
|
|
|
Session session = getSession();
|
|
|
|
Transaction tx = null;
|
|
|
|
List<E> result = null;
|
|
|
|
try {
|
|
|
|
tx = session.beginTransaction();
|
|
|
|
Criteria criteria = session.createCriteria(persistentClass);
|
|
|
|
result = criteria.list();
|
|
|
|
} catch (Exception e) {
|
|
|
|
if (tx != null)
|
|
|
|
tx.rollback();
|
|
|
|
throw e;
|
|
|
|
} finally {
|
|
|
|
session.close();
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2015-04-12 23:49:00 +03:00
|
|
|
}
|