hibernate 批量删除


在BaseDao中批量删除对象,传入需要删除对象的id数组,hql语句中的类名通过反射获取泛型参数的Class对象

public int delete(String[] ids) {

    
       // classPo 通过反射获取到泛型的Class对象
   
    String hql="delete  "+classPo.getName()+" where id in (:ids) ";
    Query query = this.getCurrentSession().createQuery(hql);
    query.setParameterList("ids", ids);
    return query.executeUpdate();
   

    }


classPo通过反射获取泛型对象,参考泛型T的类型获取


你可能感兴趣的:(hibernate)