Configuration

(Difference between revisions)
Jump to: navigation, search
m (formatting)
(moving sample code to other file)
Line 1: Line 1:
 
OpenCms comes with a built in search index for the online and offline projects.  Additional search indices can be created but have to be done through editing the XML config files.
 
OpenCms comes with a built in search index for the online and offline projects.  Additional search indices can be created but have to be done through editing the XML config files.
 
 
You would use the search index in a JSP something like this:
 
 
 
CmsJspActionElement cmsJae = new CmsJspActionElement(pageContext, request, response);
 
CmsSearch search = new CmsSearch();
 
 
search.setIndex("online");
 
search.setQuery(queryString);
 
search.init(cmsJae.getCmsObject());
 
List searchResults = search.getSearchResult();
 
 
Iterator iterator = searchResults.iterator();
 
while (iterator.hasNext()) {
 
    CmsSearchResult r = (CmsSearchResult)iterator.next();
 
    //do stuff...
 
}
 

Revision as of 18:32, 13 June 2007

OpenCms comes with a built in search index for the online and offline projects. Additional search indices can be created but have to be done through editing the XML config files.

Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox