📄 _baserootdao.java
字号:
return q;
}
/**
* Obtain an instance of Query for a named query string defined in the mapping file.
* @param name the name of a query defined externally
* @param param the first parameter to set
* @return Query
*/
protected Query getNamedQuery(String name, Serializable param) throws HibernateException {
Session s = null;
try {
s = getSession();
return getNamedQuery(name, param, s);
} finally {
closeSession(s);
}
}
/**
* Obtain an instance of Query for a named query string defined in the mapping file.
* Use the session given.
* @param name the name of a query defined externally
* @param param the first parameter to set
* @param s the Session
* @return Query
*/
protected Query getNamedQuery(String name, Serializable param, Session s) throws HibernateException {
Query q = s.getNamedQuery(name);
q.setParameter(0, param);
return q;
}
/**
* Obtain an instance of Query for a named query string defined in the mapping file.
* Use the parameters given.
* @param name the name of a query defined externally
* @param params the parameter array
* @return Query
*/
protected Query getNamedQuery(String name, Serializable[] params) throws HibernateException {
Session s = null;
try {
s = getSession();
return getNamedQuery(name, params, s);
} finally {
closeSession(s);
}
}
/**
* Obtain an instance of Query for a named query string defined in the mapping file.
* Use the parameters given and the Session given.
* @param name the name of a query defined externally
* @param params the parameter array
* @s the Session
* @return Query
*/
protected Query getNamedQuery(String name, Serializable[] params, Session s) throws HibernateException {
Query q = s.getNamedQuery(name);
if (null != params) {
for (int i = 0; i < params.length; i++) {
q.setParameter(i, params[i]);
}
}
return q;
}
/**
* Obtain an instance of Query for a named query string defined in the mapping file.
* Use the parameters given.
* @param name the name of a query defined externally
* @param params the parameter Map
* @return Query
*/
protected Query getNamedQuery(String name, Map params) throws HibernateException {
Session s = null;
try {
s = getSession();
return getNamedQuery(name, params, s);
} finally {
closeSession(s);
}
}
/**
* Obtain an instance of Query for a named query string defined in the mapping file.
* Use the parameters given and the Session given.
* @param name the name of a query defined externally
* @param params the parameter Map
* @s the Session
* @return Query
*/
protected Query getNamedQuery(String name, Map params, Session s) throws HibernateException {
Query q = s.getNamedQuery(name);
if (null != params) {
for (Iterator i=params.entrySet().iterator(); i.hasNext(); ) {
Map.Entry entry = (Map.Entry) i.next();
q.setParameter((String) entry.getKey(), entry.getValue());
}
}
return q;
}
/**
* Execute a query.
* @param queryStr a query expressed in Hibernate's query language
* @return a distinct list of instances (or arrays of instances)
*/
public Query getQuery(String queryStr) throws HibernateException {
Session s = null;
try {
s = getSession();
return getQuery(queryStr, s);
} finally {
closeSession(s);
}
}
/**
* Execute a query but use the session given instead of creating a new one.
* @param queryStr a query expressed in Hibernate's query language
* @s the Session to use
*/
public Query getQuery(String queryStr, Session s) throws HibernateException {
return s.createQuery(queryStr);
}
/**
* Execute a query.
* @param query a query expressed in Hibernate's query language
* @param queryStr the name of a query defined externally
* @param param the first parameter to set
* @return Query
*/
protected Query getQuery(String queryStr, Serializable param) throws HibernateException {
Session s = null;
try {
s = getSession();
return getQuery(queryStr, param, s);
} finally {
closeSession(s);
}
}
/**
* Execute a query but use the session given instead of creating a new one.
* @param queryStr a query expressed in Hibernate's query language
* @param param the first parameter to set
* @s the Session to use
* @return Query
*/
protected Query getQuery(String queryStr, Serializable param, Session s) throws HibernateException {
Query q = getQuery(queryStr, s);
q.setParameter(0, param);
return q;
}
/**
* Execute a query.
* @param queryStr a query expressed in Hibernate's query language
* @param params the parameter array
* @return Query
*/
protected Query getQuery(String queryStr, Serializable[] params) throws HibernateException {
Session s = null;
try {
s = getSession();
return getQuery(queryStr, params, s);
} finally {
closeSession(s);
}
}
/**
* Execute a query but use the session given instead of creating a new one.
* @param queryStr a query expressed in Hibernate's query language
* @param params the parameter array
* @s the Session
* @return Query
*/
protected Query getQuery(String queryStr, Serializable[] params, Session s) throws HibernateException {
Query q = getQuery(queryStr, s);
if (null != params) {
for (int i = 0; i < params.length; i++) {
q.setParameter(i, params[i]);
}
}
return q;
}
/**
* Obtain an instance of Query for a named query string defined in the mapping file.
* Use the parameters given.
* @param queryStr a query expressed in Hibernate's query language
* @param params the parameter Map
* @return Query
*/
protected Query getQuery(String queryStr, Map params) throws HibernateException {
Session s = null;
try {
s = getSession();
return getQuery(queryStr, params, s);
} finally {
closeSession(s);
}
}
/**
* Obtain an instance of Query for a named query string defined in the mapping file.
* Use the parameters given and the Session given.
* @param queryStr a query expressed in Hibernate's query language
* @param params the parameter Map
* @s the Session
* @return Query
*/
protected Query getQuery(String queryStr, Map params, Session s) throws HibernateException {
Query q = getQuery(queryStr, s);
if (null != params) {
for (Iterator i=params.entrySet().iterator(); i.hasNext(); ) {
Map.Entry entry = (Map.Entry) i.next();
q.setParameter((String) entry.getKey(), entry.getValue());
}
}
return q;
}
protected Order getDefaultOrder () {
return null;
}
/**
* Used by the base DAO classes but here for your modification
* Persist the given transient instance, first assigning a generated identifier.
* (Or using the current value of the identifier property if the assigned generator is used.)
*/
protected Serializable save(Object obj) throws HibernateException {
Transaction t = null;
Session s = null;
try {
s = getSession();
t = beginTransaction(s);
Serializable rtn = save(obj, s);
commitTransaction(t);
return rtn;
}
catch (HibernateException e) {
if (null != t) t.rollback();
throw e;
}
finally {
closeSession(s);
}
}
/**
* Used by the base DAO classes but here for your modification
* Persist the given transient instance, first assigning a generated identifier.
* (Or using the current value of the identifier property if the assigned generator is used.)
*/
protected Serializable save(Object obj, Session s) throws HibernateException {
return s.save(obj);
}
/**
* Used by the base DAO classes but here for your modification
* Either save() or update() the given instance, depending upon the value of its
* identifier property.
*/
protected void saveOrUpdate(Object obj) throws HibernateException {
Transaction t = null;
Session s = null;
try {
s = getSession();
t = beginTransaction(s);
saveOrUpdate(obj, s);
commitTransaction(t);
}
catch (HibernateException e) {
if (null != t) t.rollback();
throw e;
}
finally {
closeSession(s);
}
}
/**
* Used by the base DAO classes but here for your modification
* Either save() or update() the given instance, depending upon the value of its
* identifier property.
*/
protected void saveOrUpdate(Object obj, Session s) throws HibernateException {
s.saveOrUpdate(obj);
}
/**
* Used by the base DAO classes but here for your modification
* Update the persistent state associated with the given identifier. An exception is thrown if there is a persistent
* instance with the same identifier in the current session.
* @param obj a transient instance containing updated state
*/
protected void update(Object obj) throws HibernateException {
Transaction t = null;
Session s = null;
try {
s = getSession();
t = beginTransaction(s);
update(obj, s);
commitTransaction(t);
}
catch (HibernateException e) {
if (null != t) t.rollback();
throw e;
}
finally {
closeSession(s);
}
}
/**
* Used by the base DAO classes but here for your modification
* Update the persistent state associated with the given identifier. An exception is thrown if there is a persistent
* instance with the same identifier in the current session.
* @param obj a transient instance containing updated state
* @param s the Session
*/
protected void update(Object obj, Session s) throws HibernateException {
s.update(obj);
}
/**
* Delete all objects returned by the query
*/
protected int delete (Query query) throws HibernateException {
Transaction t = null;
Session s = null;
try {
s = getSession();
t = beginTransaction(s);
int rtn = delete (query, s);
commitTransaction(t);
return rtn;
}
catch (HibernateException e) {
if (null != t) t.rollback();
throw e;
}
finally {
closeSession(s);
}
}
/**
* Delete all objects returned by the query
*/
protected int delete (Query query, Session s) throws HibernateException {
List list = query.list();
for (Iterator i=list.iterator(); i.hasNext(); ) {
delete(i.next(), s);
}
return list.size();
}
/**
* Used by the base DAO classes but here for your modification
* Remove a persistent instance from the datastore. The argument may be an instance associated with the receiving
* Session or a transient instance with an identifier associated with existing persistent state.
*/
protected void delete(Object obj) throws HibernateException {
Transaction t = null;
Session s = null;
try {
s = getSession();
t = beginTransaction(s);
delete(obj, s);
commitTransaction(t);
}
catch (HibernateException e) {
if (null != t) t.rollback();
throw e;
}
finally {
closeSession(s);
}
}
/**
* Used by the base DAO classes but here for your modification
* Remove a persistent instance from the datastore. The argument may be an instance associated with the receiving
* Session or a transient instance with an identifier associated with existing persistent state.
*/
protected void delete(Object obj, Session s) throws HibernateException {
s.delete(obj);
}
/**
* Used by the base DAO classes but here for your modification
* Re-read the state of the given instance from the underlying database. It is inadvisable to use this to implement
* long-running sessions that span many business tasks. This method is, however, useful in certain special circumstances.
*/
protected void refresh(Object obj, Session s) throws HibernateException {
s.refresh(obj);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -