java-tutorials/spring-apache-camel/src/main/resources/camel-context-SplitterFileRouter.xml
Ante Pocedulic dfd2d7a238 - changed test package name from org.baeldung to com.baeldung (#897)
- streams are added where neccessary
- format fixes
2016-12-15 16:23:08 +01:00

13 lines
599 B
XML

<?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-3.1.xsd
http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd">
<bean id="splitterFileRouter" class="com.baeldung.camel.file.SplitterFileRouter" />
<camelContext xmlns="http://camel.apache.org/schema/spring">
<routeBuilder ref="splitterFileRouter" />
</camelContext>
</beans>