JXPath

JXPath

Camel supports JXPath to allow XPath expressions to be used on beans in an Expression or Predicate to be used in the DSL or Xml Configuration . For example you could use JXPath to create an Predicate in a Message Filter or as an Expression for a Recipient List .

From 1.3 of Camel onwards you can use XPath expressions directly using smart completion in your IDE as follows

from("queue:foo"
).filter().
jxpath("/in/body/foo" ).
to("queue:bar" )

Variables

Variable Type Description
this Exchange the Exchange object
in Message the exchange.in message
out Message the exchange.out message

Using XML configuration

If you prefer to configure your routes in your Spring XML file then you can use JXPath expressions as follows

<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-2.0.xsd
http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd">

<camelContext id="camel" xmlns="http://activemq.apache.org/camel/schema/spring" >
<route>
<from uri="activemq:MyQueue" />
<filter>
<jxpath> in/body/name = 'James'</xpath>
<to uri="mqseries:SomeOtherQueue" />
</filter>
</route>
</camelContext>
</beans>

Examples

Here is a simple example using a JXPath expression as a predicate in a Message Filter

from("direct:start"
).
filter().jxpath("in/body/name='James'" ).
to("mock:result" );

JXPath injection

You can use Bean Integration to invoke a method on a bean and use various languages such as JXPath to extract a value from the message and bind it to a method parameter.

For example

public
 class Foo {

@MessageDriven(uri = "activemq:my.queue" )
public void doSomething(@JXPath("in/body/foo" ) String correlationID, @Body String body) {
// process the inbound message here
}
}

Dependencies

To use JXpath in your camel routes you need to add the a dependency on camel-jxpath which implements the JXpath language.

If you use maven you could just add the following to your pom.xml, substituting the version number for the latest & greatest release (see the download page for the latest versions ).

<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-jxpath</artifactId>
<version>1.4.0</version>
</dependency>

Otherwise, you'll also need Commons JXPath .

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值