-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtopic_template.xml
More file actions
19 lines (16 loc) · 983 Bytes
/
topic_template.xml
File metadata and controls
19 lines (16 loc) · 983 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0"?>
<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">
<bean id="[SOURCE-SYSTEM]" class="org.apache.activemq.camel.component.ActiveMQComponent">
<property name="brokerURL" value="[URL]"/>
<property name="username" value="[USERNAME]"/>
<property name="password" value="[PASSWORD]"/>
</bean>
<camelContext streamCache="true" xmlns="http://camel.apache.org/schema/spring" id="camel-[SOURCE-SYSTEM]">
<!-- route tags are inserted here to configure [SOURCE-SYSTEM]-SOURCE-SYSTEMs, do not change to <camelContext/>-->
</camelContext>
</beans>