本文整理汇总了Java中com.liferay.portal.kernel.search.SearchContext.setQueryConfig方法的典型用法代码示例。如果您正苦于以下问题:Java SearchContext.setQueryConfig方法的具体用法?Java SearchContext.setQueryConfig怎么用?Java SearchContext.setQueryConfig使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.liferay.portal.kernel.search.SearchContext
的用法示例。
在下文中一共展示了SearchContext.setQueryConfig方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: buildSearchContext
import com.liferay.portal.kernel.search.SearchContext; //导入方法依赖的package包/类
protected SearchContext buildSearchContext(long userId, long groupId, long ownerUserId, String workPackage,
String description, int status, Date fromDate, Date untilDate, LinkedHashMap<String, Object> params,
boolean andSearch, boolean advancedSearch, int start, int end, Sort sort) throws PortalException {
SearchContext searchContext = new SearchContext();
searchContext.setAttribute("advancedSearch", advancedSearch);
searchContext.setAttribute(Field.STATUS, status);
if (Validator.isNotNull(description)) {
searchContext.setAttribute("description", description);
}
searchContext.setAttribute("fromDate", fromDate);
searchContext.setAttribute("untilDate", untilDate);
if (Validator.isNotNull(workPackage)) {
searchContext.setAttribute("workPackage", workPackage);
}
searchContext.setAttribute("paginationType", "more");
Group group = GroupLocalServiceUtil.getGroup(groupId);
searchContext.setCompanyId(group.getCompanyId());
if (ownerUserId > 0) {
searchContext.setOwnerUserId(ownerUserId);
}
searchContext.setEnd(end);
if (groupId > 0) {
searchContext.setGroupIds(new long[] { groupId });
}
searchContext.setSorts(sort);
searchContext.setStart(start);
searchContext.setUserId(userId);
searchContext.setAndSearch(andSearch);
if (params != null) {
String keywords = (String) params.remove("keywords");
if (Validator.isNotNull(keywords)) {
searchContext.setKeywords(keywords);
}
}
QueryConfig queryConfig = new QueryConfig();
queryConfig.setHighlightEnabled(false);
queryConfig.setScoreEnabled(false);
searchContext.setQueryConfig(queryConfig);
if (sort != null) {
searchContext.setSorts(sort);
}
searchContext.setStart(start);
return searchContext;
}
示例2: buildSearchContext
import com.liferay.portal.kernel.search.SearchContext; //导入方法依赖的package包/类
protected SearchContext buildSearchContext(long userId, long groupId, long ownerUserId, String company,
String fullName, int status, LinkedHashMap<String, Object> params, boolean andSearch, int start, int end,
Sort sort) throws PortalException {
SearchContext searchContext = new SearchContext();
searchContext.setAttribute(Field.STATUS, status);
if (Validator.isNotNull(company)) {
searchContext.setAttribute("company", company);
}
if (Validator.isNotNull(fullName)) {
searchContext.setAttribute("fullName", fullName);
}
searchContext.setAttribute("paginationType", "more");
Group group = GroupLocalServiceUtil.getGroup(groupId);
searchContext.setCompanyId(group.getCompanyId());
if (ownerUserId > 0) {
searchContext.setOwnerUserId(ownerUserId);
}
searchContext.setEnd(end);
if (groupId > 0) {
searchContext.setGroupIds(new long[] { groupId });
}
searchContext.setSorts(sort);
searchContext.setStart(start);
searchContext.setUserId(userId);
searchContext.setAndSearch(andSearch);
if (params != null) {
String keywords = (String) params.remove("keywords");
if (Validator.isNotNull(keywords)) {
searchContext.setKeywords(keywords);
}
}
QueryConfig queryConfig = new QueryConfig();
queryConfig.setHighlightEnabled(false);
queryConfig.setScoreEnabled(false);
searchContext.setQueryConfig(queryConfig);
if (sort != null) {
searchContext.setSorts(sort);
}
searchContext.setStart(start);
return searchContext;
}
示例3: buildSearchContext
import com.liferay.portal.kernel.search.SearchContext; //导入方法依赖的package包/类
protected SearchContext buildSearchContext(long userId, long groupId,
String data, String id, String name, String range, Date timestamp,
Date fromDate, Date untilDate, LinkedHashMap<String, Object> params,
boolean andSearch, int start, int end, Sort sort)
throws PortalException {
SearchContext searchContext = new SearchContext();
searchContext.setAttribute("advancedSearch", true);
searchContext.setAttribute(Field.STATUS, WorkflowConstants.STATUS_ANY);
if (Validator.isNotNull(data)) {
searchContext.setAttribute("data", data);
}
if (Validator.isNotNull(id)) {
searchContext.setAttribute("id", id);
}
if (Validator.isNotNull(name)) {
searchContext.setAttribute("name", name);
}
if (Validator.isNotNull(range)) {
searchContext.setAttribute("range", range);
}
if (Validator.isNotNull(timestamp)) {
searchContext.setAttribute("timestamp", timestamp.getTime());
}
if (Validator.isNotNull(fromDate)) {
searchContext.setAttribute("fromDate", fromDate);
}
if (Validator.isNotNull(untilDate)) {
searchContext.setAttribute("untilDate", untilDate);
}
searchContext.setAttribute("paginationType", "more");
Group group = GroupLocalServiceUtil.getGroup(groupId);
searchContext.setCompanyId(group.getCompanyId());
searchContext.setEnd(end);
if (groupId > 0) {
searchContext.setGroupIds(new long[] { groupId });
}
searchContext.setSorts(sort);
searchContext.setStart(start);
searchContext.setUserId(userId);
searchContext.setAndSearch(andSearch);
if (params != null) {
String keywords = (String) params.remove("keywords");
if (Validator.isNotNull(keywords)) {
searchContext.setKeywords(keywords);
}
}
QueryConfig queryConfig = new QueryConfig();
queryConfig.setHighlightEnabled(false);
queryConfig.setScoreEnabled(false);
searchContext.setQueryConfig(queryConfig);
if (sort != null) {
searchContext.setSorts(sort);
}
searchContext.setStart(start);
return searchContext;
}
示例4: executeSearch
import com.liferay.portal.kernel.search.SearchContext; //导入方法依赖的package包/类
protected Document[] executeSearch(
SearchContext searchContext, BooleanQuery query, Sort[] sorts,
TermRangeQuery termRangeQuery, String[] indexFields, int size)
throws ParseException, SearchException {
BooleanQuery mainQuery = BooleanQueryFactoryUtil.create(searchContext);
mainQuery.add(query, BooleanClauseOccur.MUST);
if (termRangeQuery != null) {
mainQuery.add(termRangeQuery, BooleanClauseOccur.MUST);
}
if (sorts.length > 0) {
searchContext.setSorts(sorts);
}
if (_log.isDebugEnabled()) {
_log.debug("size: " + size);
_log.debug("Executing search: " + mainQuery);
}
searchContext.setStart(0);
searchContext.setEnd(size);
QueryConfig queryConfig = new QueryConfig();
queryConfig.setHighlightEnabled(false);
queryConfig.setScoreEnabled(false);
if (indexFields != null) {
queryConfig.setSelectedFieldNames(indexFields);
}
mainQuery.setQueryConfig(queryConfig);
searchContext.setQueryConfig(queryConfig);
Hits hits = SearchEngineUtil.search(searchContext, mainQuery);
Document[] docs = hits.getDocs();
if (_log.isDebugEnabled()) {
_log.debug(docs.length + " hits returned");
}
return docs;
}