Как определить свойства весной DSL в Apache Camel

Как я могу определить свойства с Spring DSL в Apache Camel? С Blueprint вы можете сделать это через:

 <cm:property-placeholder persistent-id="org.apache.servicemix.examples.cxf.receive" update-strategy="reload">
        <cm:default-properties>
            <cm:property name="CXFserver" value="http://localhost:8989/"/>
            <cm:property name="service" value="soap" />
        </cm:default-properties>
    </cm:property-placeholder>

    <camelcxf:cxfEndpoint id="personService"
                          address="${CXFserver}${service}"
                          serviceClass="org.apache.servicemix.examples.camel.soap.PersonService"
                          />

Но с Spring DSL, что мне делать, как в примере выше? Ниже моего camel-cxf.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" xmlns:cxf="http://camel.apache.org/schema/cxf"
    xsi:schemaLocation="
         http://www.springframework.org/schema/beans 
         http://www.springframework.org/schema/beans/spring-beans.xsd
         http://camel.apache.org/schema/cxf 
         http://camel.apache.org/schema/cxf/camel-cxf.xsd">


    <!-- setting up a Camel CXF web-service -->
    <cxf:cxfEndpoint id="orderEndpoint"
        loggingFeatureEnabled="true" address="http://localhost:9000/order/"
        serviceClass="com.aa.kk.service.OrderService" />


</beans>

3 ответа

Решение

Вы пытаетесь получить ваши свойства на сервере, я никогда не пытался сделать это. Но вы можете попробовать сделать что-то вроде, когда файл свойств является локальным, например, так.

<bean
    class="org.apache.camel.component.properties.PropertiesComponent" id="properties">
    <property name="location" value="classpath:application.properties"/>
</bean>

А в вашем classpath вы можете попробовать изменить ваш classpath на ваш адрес сервера.

С PropertyPlaceholderConfigurer, как

    <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="properties">
            <props>
                <prop key="CXFserver">http://localhost:8989/</prop>
                <prop key="service">soap</prop>
            </props>
        </property> 
    </bean>

См. Документацию: http://camel.apache.org/using-propertyplaceholder.html в разделе настройки весной xml.

Другие вопросы по тегам