blob: 9ad6f0ab568a6bac208dcbdd4ec694d8338c8745 [file] [log] [blame]
<?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.
-->
<!-- START SNIPPET: e1 -->
<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"
xmlns:camel="http://camel.apache.org/schema/spring"
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">
<!-- let Spring do its IoC stuff in this package -->
<context:component-scan base-package="org.apache.camel.example.server"/>
<!-- spring property placeholder, ignore resource not found as the file resource is for unit testing -->
<context:property-placeholder location="classpath:camel.properties,file:target/custom.properties"
ignore-resource-not-found="true"/>
<bean id="myOrderTypeConverters" class="org.apache.camel.example.pulsar.server.TypeConverters"/>
<!-- declare a camel context that scans for classes that is RouteBuilder
in the package org.apache.camel.example.server -->
<camel:camelContext id="camel-server">
<camel:package>org.apache.camel.example.pulsar.server</camel:package>
<!-- enable JMX connector so we can connect to the server and browse mbeans -->
<!-- Camel will log at INFO level the service URI to use for connecting with jconsole -->
<camel:jmxAgent id="agent"/>
</camel:camelContext>
<bean id="multiplier" class="org.apache.camel.example.pulsar.server.Treble"/>
<!-- pulsar configurations -->
<util:set id="clusters" value-type="java.lang.String">
<value>standalone</value>
</util:set>
<bean id="pulsarAdminHost" class="java.lang.String">
<constructor-arg value="http://localhost:8080"/>
</bean>
<bean id="pulsarAdminConfig" class="org.apache.pulsar.client.impl.conf.ClientConfigurationData">
<property name="serviceUrl" ref="pulsarAdminHost"/>
</bean>
<bean id="pulsarAdmin" class="org.apache.pulsar.client.admin.PulsarAdmin">
<constructor-arg ref="pulsarAdminHost"/>
<constructor-arg ref="pulsarAdminConfig"/>
</bean>
<bean id="autoconfig" class="org.apache.camel.component.pulsar.utils.AutoConfiguration">
<constructor-arg ref="pulsarAdmin"/>
<constructor-arg ref="clusters"/>
</bean>
<bean id="pulsarClientConfig" class="org.apache.pulsar.client.impl.conf.ClientConfigurationData">
<property name="serviceUrl" value="pulsar://localhost:6650"/>
</bean>
<bean id="pulsarClientBuilder" class="org.apache.pulsar.client.impl.ClientBuilderImpl">
<constructor-arg ref="pulsarClientConfig"/>
</bean>
<bean id="pulsarClient" factory-bean="pulsarClientBuilder" factory-method="build"/>
<!-- pulsar component -->
<bean id="pulsar" class="org.apache.camel.component.pulsar.PulsarComponent">
<constructor-arg ref="camel-server"/>
<property name="autoConfiguration" ref="autoconfig"/>
<property name="pulsarClient" ref="pulsarClient"/>
</bean>
</beans>