Camel Apache:xpath从收到的XML中提取一些值

时间:2012-03-09 15:31:35

标签: xpath apache-camel

在我的Camel路由期间,我查询服务器(HTTP GET),结果,我收到一个200 OK,其XML体看起来像这样:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<userProfiles xmlns="http://www.mycompany.com/AEContext/xmldata">
  <userProfile name="guest">
    <userProfileAttributes>
      <userProfileAttribute name="parameter1" value="data1" nameVisibility="ALL"/>  
      <userProfileAttribute name="parameter2" value="data2" nameVisibility="ALL"/>
      <userProfileAttribute name="parameter3" value="data3" nameVisibility="ALL"/>
    </userProfileAttributes>
  </userProfile>
</userProfiles>

我知道如何在XML部分(在我的示例'data2'中)获取“parameter2”的值并将该值存储在exchange属性中?我想通过使用xpath表达式?要么 ... 谢谢你的帮助。

1 个答案:

答案 0 :(得分:9)

检索值的简单方法是使用XPath Language。它将允许您提取所需的数据并将其设置在某个位置(标题,正文,...)。以下是使用值

设置 parameter2 标头的方法
<setHeader headerName="parameter2">
  <xpath resultType="java.lang.String">
    /userProfiles/userProfile/userProfileAttributes/userProfileAttribute[2]/@value
  </xpath>
</setHeader>

使用Java DSL

使用Java DSL并设置邮件正文的示例:

final Namespaces ns = new Namespaces("c", "http://www.mycompany.com/AEContext/xmldata");

// existing code
from(...)
  .setBody(
    ns.xpath(
      "/c:userProfiles/userProfile/userProfileAttributes/userProfileAttribute[2]/@value",   
      String.class)
   )
   .to(...);