{ "name" : "Sample Config", "textExtraction": { "extractors" : { "tikaExtractor":{ "name" : "Tika content-based extractor", "classname" : "tika" } } } }
This text extractor uses the Tika library to extract text from a variety of file formats. It will automatically discover all of the Tika Parser implementations that are defined in META-INF/services/org.apache.tika.parser.Parser text files accessible via the current classloader and that contain the class names of the Parser implementations (one class name per line in each file). In other words, simply ensure that the Tika libraries for the appropriate file formats are on the classpath, and the text extractor will be able to use them all.
This text extractor can be configured in a ModeShape configuration by specifying several optional properties:
excludedMimeTypes - The comma- or whitespace-separated list of MIME types that should be excluded from text extraction, even if there is a Tika Parser available for that MIME type. By default, the MIME types for package files are excluded, though explicitly setting any excluded MIME types will override these default.
includedMimeTypes - The comma- or whitespace-separated list of MIME types that should be included in text extraction. This extractor will ignore any MIME types in this list that are not covered by Tika Parser implementations.
writeLimit - The maximum number of characters that Tika should extract from the underlying source
To use this extractor, simply include the modeshape-extractor-tika JAR and the appropriate required Tika JARs are on the classpath (or via Maven) and configure the repository in a similar fashion to:
{ "name" : "Sample Config", "textExtraction": { "extractors" : { "tikaExtractor":{ "name" : "Tika content-based extractor", "classname" : "tika" } } } }
<subsystem xmlns="urn:jboss:domain:modeshape:2.0"> <repository name="sample"> ... <text-extractors> <text-extractor classname="tika" name="tika-extractor" module="org.modeshape.extractor.tika"/> OR <text-extractor classname="org.modeshape.extractor.tika.TikaTextExtractor" name="tika-extractor" module="org.modeshape.extractor.tika"/> </text-extractors> </repository> </subsystem>