XQuery

36 篇文章 1 订阅

XQuery

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

from("queue:foo"
).filter().
xquery("//foo" ).
to("queue:bar" )

You can also use functions inside your query, in which case you need an explicit type conversion (or you will get a org.w3c.dom.DOMException: HIERARCHY_REQUEST_ERR) by passing the Class as a second argument to the xquery() method.

from("direct:start"
).
recipientList().xquery("concat('mock:foo.', /person/@city)" , String .class);

Variables

The IN message body will be set as the contextItem . Besides this these Variables is also added as parameters:

Variable Type Description Support version
exchange Exchange The current Exchange  
in.body Object The In message's body >= 1.6.1
out.body Object The OUT message's body (if any) >= 1.6.1
in.headers.* Object You can access the value of exchange.in.headers with key foo by using the variable which name is in.headers.foo >=1.6.1
out.headers.* Object You can access the value of exchange.out.headers with key foo by using the variable which name is out.headers.foo variable >=1.6.1
key name Object Any exchange.properties and exchange.in.headers (exchange.in.headers support was removed since camel 1.6.1) and any additional parameters set using setParameters(Map) . These parameters is added with they own key name, for instance if there is an IN header with the key name foo then its added as foo .  

Using XML configuration

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

<beans xmlns="http://www.springframework.org/schema/beans"

xmlns:xsi ="http://www.w3.org/2001/XMLSchema-instance"
xmlns:foo ="http://example.com/person"
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>
<xquery> /foo:person[@name='James']</xquery>
<to uri="mqseries:SomeOtherQueue" />
</filter>
</route>
</camelContext>
</beans>

Notice how we can reuse the namespace prefixes, foo in this case, in the XPath expression for easier namespace based XQuery expressions!

When you use functions in your XQuery expression you need an explicit type conversion which is done in the xml configuration via the @type attribute:

    <xquery type="java.lang.String"
>
concat('mock:foo.', /person/@city)</xquery>

Using XQuery as an endpoint

Sometimes an XQuery expression can be quite large; it can essentally be used for Templating . So you may want to use an XQuery Endpoint so you can route using XQuery templates.

The following example shows how to take a message of an ActiveMQ queue (MyQueue) and transform it using XQuery and send it to MQSeries.

  <camelContext id="camel"
 xmlns="http://camel.apache.org/schema/spring"
>
<route>
<from uri="activemq:MyQueue" />
<to uri="xquery:com/acme/someTransform.xquery" />
<to uri="mqseries:SomeOtherQueue" />
</route>
</camelContext>

Examples

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

from("direct:start"
).filter().xquery("/person[@name='James']"
).to("mock:result"
);

This example uses XQuery with namespaces as a predicate in a Message Filter

Namespaces ns = new
 Namespaces("c"
, "http://acme.com/cheese"
);

from("direct:start" ).
filter().xquery("/c:person[@name='James']" , ns).
to("mock:result" );

Learning XQuery

XQuery is a very powerful language for querying, searching, sorting and returning XML. For help learning XQuery try these tutorials

You might also find the XQuery function reference useful

Dependencies

To use XQuery in your camel routes you need to add the a dependency on camel-saxon which implements the XQuery 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-saxon</artifactId>
<version>1.4.0</version>
</dependency>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值