Do AbstractService bylo přidáno DAO bez typového parametru pro obecné
dotazování databáze.multitenant
parent
6835dd2f7c
commit
78cf41d2a0
@ -0,0 +1,29 @@
|
||||
package info.bukova.isspst.dao;
|
||||
|
||||
import org.hibernate.Query;
|
||||
import org.hibernate.Session;
|
||||
|
||||
/**
|
||||
* Rozhraní netypového DAO objektu pro obecné dotazování databáze.
|
||||
*
|
||||
* @author pepa
|
||||
*
|
||||
*/
|
||||
public interface QueryDao {
|
||||
|
||||
/**
|
||||
* Vytvoří {@link Query} objekt na základě předaného stringu.
|
||||
*
|
||||
* @param query - string HQL dotazu
|
||||
* @return - {@link Query} objekt
|
||||
*/
|
||||
public Query getQuery(String query);
|
||||
|
||||
/**
|
||||
* Vráti aktuální hibernat {@link Session}.
|
||||
*
|
||||
* @return {@link Session}
|
||||
*/
|
||||
public Session getSession();
|
||||
|
||||
}
|
@ -0,0 +1,27 @@
|
||||
package info.bukova.isspst.dao.jpa;
|
||||
|
||||
import org.hibernate.Query;
|
||||
import org.hibernate.Session;
|
||||
import org.hibernate.SessionFactory;
|
||||
|
||||
import info.bukova.isspst.dao.QueryDao;
|
||||
|
||||
public class QueryDaoJPA implements QueryDao {
|
||||
|
||||
private SessionFactory sessionFactory;
|
||||
|
||||
public void setSessionFactory(SessionFactory factory) {
|
||||
this.sessionFactory = factory;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Query getQuery(String query) {
|
||||
return sessionFactory.getCurrentSession().createQuery(query);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Session getSession() {
|
||||
return sessionFactory.getCurrentSession();
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue