Search Manual / Version 2406.0
Table Of Contents
The file caefeeder-triggers.xml
located in classpath
/framework/spring/caefeeder/
contains the Spring Framework bean definition of
the content selector. The default implementation PathAndTypeContentSelector
selects contents by type and path. You can configure it with the following properties:
feeder.contentSelector.basePath
- Specifies a comma-separated list of content repository folder paths.
-
feeder.contentSelector.contentTypes
- Contains a comma-separated list of content types.
feeder.contentSelector.includeSubTypes
- Specifies whether subtypes of the configured content types are selected as well. The default is true.
Note
Changing the feeder.contentSelector
properties will not trigger any re-indexing of already indexed
content.
See Section 5.3.2, “Resetting” for details on re-indexing.
Example
Example 5.3, “ContentSelector example” selects all contents of type CMMedia
,
CMArticle
, CMDownload
and CMCollection
(including sub types) which are
located below the path /Sites
:
feeder.contentSelector.basePath=/Sites feeder.contentSelector.contentTypes=CMMedia,CMArticle,CMDownload,CMCollection feeder.contentSelector.includeSubTypes=true
Example 5.3. ContentSelector example