Former-commit-id:449692aeff
[formerlyb803359eb4
] [formerly5111debc92
] [formerly449692aeff
[formerlyb803359eb4
] [formerly5111debc92
] [formerlya5a7816b98
[formerly5111debc92
[formerly 9ac3d2ddbeee7265b9b7879fcc6efcee95281872]]]] Former-commit-id:a5a7816b98
Former-commit-id:21fb70a26a
[formerlydb69f5b54a
] [formerly 30f0c6a3141bbd70f57d9187f7478aa7a8aecd56 [formerlybc169f0a04
]] Former-commit-id: 4a8c427f1c11daaee6646c7b4ca27cb08a82416c [formerly7fe0220024
] Former-commit-id:4effeb83ba
26 lines
No EOL
1.2 KiB
XML
26 lines
No EOL
1.2 KiB
XML
<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-3.1.xsd
|
|
http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd">
|
|
|
|
<bean id="preciprateGenerator" class="com.raytheon.uf.edex.plugin.preciprate.PrecipRateGenerator"/>
|
|
|
|
<bean factory-bean="cpgSrvDispatcher" factory-method="register">
|
|
<constructor-arg ref="preciprateGenerator"/>
|
|
</bean>
|
|
|
|
<camelContext id="preciprate-camel" xmlns="http://camel.apache.org/schema/spring" errorHandlerRef="errorHandler">
|
|
<route id="PrecipRateGenerate">
|
|
<from uri="jms-durable:queue:preciprateGenerate"/>
|
|
<doTry>
|
|
<bean ref="serializationUtil" method="transformFromThrift" />
|
|
<bean ref="preciprateGenerator" method="generate" />
|
|
<doCatch>
|
|
<exception>java.lang.Throwable</exception>
|
|
<to uri="log:precipRate?level=ERROR"/>
|
|
</doCatch>
|
|
</doTry>
|
|
</route>
|
|
</camelContext>
|
|
</beans> |