Initial cut of AMQ-2131 for using camel-web to interact with camel endpoints and routes while inside the AMQ broker

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@746279 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
James Strachan 2009-02-20 15:30:36 +00:00
parent 5273aab548
commit f4aa952a09
2 changed files with 71 additions and 0 deletions

View File

@ -87,6 +87,30 @@
<dependencySet>
<outputDirectory>/webapps/camel</outputDirectory>
<unpack>true</unpack>
<unpackOptions>
<excludes>
<exclude>**/applicationContext.xml</exclude>
<!-- ignore jars already in distro -->
<exclude>**/act*.jar</exclude>
<exclude>**/aop*.jar</exclude>
<!--
<exclude>**/asm*.jar</exclude>
-->
<exclude>**/camel-*.jar</exclude>
<exclude>**/commons*.jar</exclude>
<exclude>**/jackson*.jar</exclude>
<exclude>**/jaxb*.jar</exclude>
<exclude>**/jdom*.jar</exclude>
<exclude>**/jstl*.jar</exclude>
<exclude>**/rome*.jar</exclude>
<exclude>**/sitemesh*.jar</exclude>
<exclude>**/slf4j-*.jar</exclude>
<exclude>**/spring-*.jar</exclude>
<exclude>**/standard*.jar</exclude>
<exclude>**/stax*.jar</exclude>
</excludes>
</unpackOptions>
<includes>
<include>org.apache.camel:camel-web:war</include>
</includes>

View File

@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core.xsd
http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd
">
<camelContext xmlns="http://camel.apache.org/schema/spring">
<route>
<from uri="activemq:example.A"/>
<to uri="activemq:example.B"/>
</route>
</camelContext>
<!-- configure the camel activemq component to use the current broker -->
<bean id="activemq" class="org.apache.activemq.camel.component.ActiveMQComponent" >
<property name="exposeAllQueues" value="true"/>
<property name="connectionFactory">
<bean class="org.apache.activemq.ActiveMQConnectionFactory">
<property name="brokerURL" value="vm://localhost?create=false&amp;waitForStart=10000" />
<property name="userName" value="${activemq.username}"/>
<property name="password" value="${activemq.password}"/>
</bean>
</property>
</bean>
</beans>