、私見:
https://github.com/apache/camel/blob/master/components/camel-tika/src/test/java/org/apache/camel/component/tika/TikaDetectTest.java
もothers unit testsを見てみましょう。
私たちは、このような春のDSLに前述のテストでルートを運ぶことができます:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd">
<camelContext id="tikaCamelContext" xmlns="http://camel.apache.org/schema/spring">
<route>
<from uri="direct:start"/>
<to uri="tika:detect"/>
<to uri="mock:result"/>
</route>
</camelContext>
</beans>
pom.xml
ファイルにコンポーネントを追加することを忘れないでください:
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-tika</artifactId>
<version>${camel-version}</version>
</dependency>
これは何をあなたです探しています?
ありがとうございます。 –