日期:2014-05-18 浏览次数:20747 次
return getHibernateTemplate().execute(new HibernateCallback<List<Brand>>() {
@SuppressWarnings("unchecked")
@Override
public List<Brand> doInHibernate(Session session)
throws HibernateException, SQLException {
return session.createQuery("select distinct o.brand from ProductInfo o where o.productType.id in(:typeids)")
.setParameterList("typeids", typeids)//typeids为集合对象,如果是数组可以自己转下Arrays.asList();
.list();
}
});