本文整理汇总了Java中org.hibernate.criterion.Restrictions.in方法的典型用法代码示例。如果您正苦于以下问题:Java Restrictions.in方法的具体用法?Java Restrictions.in怎么用?Java Restrictions.in使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.hibernate.criterion.Restrictions
的用法示例。
在下文中一共展示了Restrictions.in方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getPreferenceForUsers
import org.hibernate.criterion.Restrictions; //导入方法依赖的package包/类
@Override
public Map<String, String> getPreferenceForUsers(String key, Collection<String> users)
{
Map<String, String> prefMap = Maps.newHashMap();
Criterion c1 = Restrictions.eq("key.preferenceID", key);
Criterion c2 = Restrictions.eq("key.institution", CurrentInstitution.get().getDatabaseId());
Criterion c3 = Restrictions.in("key.userID", users);
if (!users.isEmpty())
{
for (UserPreference pref : userPreferencesDao.findAllByCriteria(c1, c2, c3))
{
prefMap.put(pref.getKey().getUserID(), pref.getData());
}
}
return prefMap;
}
示例2: findByIds
import org.hibernate.criterion.Restrictions; //导入方法依赖的package包/类
/**
* find by ids.
*
* @param entityClass
* Class
* @param ids
* List
* @param <T>
* generic
* @return List
*/
@Transactional(readOnly = true)
public <T> List<T> findByIds(Class<T> entityClass, List ids) {
Assert.notEmpty(ids);
String idName = this.getIdName(entityClass);
Criterion criterion = Restrictions.in(idName, ids);
return this.find(entityClass, criterion);
}
示例3: buildCriterion
import org.hibernate.criterion.Restrictions; //导入方法依赖的package包/类
/**
* 按属性条件参数创建Criterion,辅助函数.
*
* @param propertyName
* String
* @param propertyValue
* Object
* @param matchType
* MatchType
* @return Criterion
*/
public static Criterion buildCriterion(String propertyName,
Object propertyValue, MatchType matchType) {
Assert.hasText(propertyName, "propertyName不能为空");
Criterion criterion = null;
// 根据MatchType构造criterion
switch (matchType) {
case EQ:
criterion = Restrictions.eq(propertyName, propertyValue);
break;
case NOT:
criterion = Restrictions.ne(propertyName, propertyValue);
break;
case LIKE:
criterion = Restrictions.like(propertyName, (String) propertyValue,
MatchMode.ANYWHERE);
break;
case LE:
criterion = Restrictions.le(propertyName, propertyValue);
break;
case LT:
criterion = Restrictions.lt(propertyName, propertyValue);
break;
case GE:
criterion = Restrictions.ge(propertyName, propertyValue);
break;
case GT:
criterion = Restrictions.gt(propertyName, propertyValue);
break;
case IN:
criterion = Restrictions.in(propertyName,
(Collection) propertyValue);
break;
case INL:
criterion = Restrictions.isNull(propertyName);
break;
case NNL:
criterion = Restrictions.isNotNull(propertyName);
break;
default:
criterion = Restrictions.eq(propertyName, propertyValue);
break;
}
return criterion;
}