Fuse 6 is no longer supported
As of February 2025, Red Hat Fuse 6 is no longer supported. If you are using Fuse 6, please upgrade to Red Hat build of Apache Camel.此内容没有您所选择的语言版本。
Chapter 19. JXPath
Overview 复制链接链接已复制到粘贴板!
复制链接链接已复制到粘贴板!
The JXPath language enables you to invoke Java beans using the Apache Commons JXPath language. The JXPath language has a similar syntax to XPath, but instead of selecting element or attribute nodes from an XML document, it invokes methods on an object graph of Java beans. If one of the bean attributes returns an XML document (a DOM/JDOM instance), however, the remaining portion of the path is interpreted as an XPath expression and is used to extract an XML node from the document. In other words, the JXPath language provides a hybrid of object graph navigation and XML node selection.
Adding JXPath package 复制链接链接已复制到粘贴板!
复制链接链接已复制到粘贴板!
To use JXPath in your routes you need to add a dependency on
camel-jxpath
to your project as shown in Example 19.1, “Adding the camel-jxpath dependency”.
Example 19.1. Adding the camel-jxpath dependency
Variables 复制链接链接已复制到粘贴板!
复制链接链接已复制到粘贴板!
Table 19.1, “JXPath variables” lists the variables that are accessible when using JXPath.
Variable | Type | Value |
---|---|---|
this | org.apache.camel.Exchange | The current Exchange |
in | org.apache.camel.Message | The IN message |
out | org.apache.camel.Message | The OUT message |
Example 复制链接链接已复制到粘贴板!
复制链接链接已复制到粘贴板!
Example 19.2, “Routes using JXPath” shows a route that use JXPath.
Example 19.2. Routes using JXPath