Skip to content

Instantly share code, notes, and snippets.

@peysal
Created February 18, 2013 09:05
Show Gist options
  • Save peysal/4976065 to your computer and use it in GitHub Desktop.
Save peysal/4976065 to your computer and use it in GitHub Desktop.
Xml file for camel
<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-2.5.xsd
http://camel.apache.org/schema/spring
http://camel.apache.org/schema/spring/camel-spring.xsd">
<camelContext id="camel" xmlns="http://camel.apache.org/schema/spring">
<route>
<from uri="file://target/inbox" />
<to uri="file://target/outbox" />
</route>
</camelContext>
</beans>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment