具有多个插入点的 Smooks XML-XML 转换

发布于 2024-10-13 13:13:05 字数 1753 浏览 3 评论 0原文

我正在尝试使用 smooks 将 xml 从一种格式转换为另一种格式。源 xml 如下所示:

<page>
    <responsedata>
      <header>
          ...
          <ref_no>xyz</ref_no>
      </header>
      <detail>
          <acc_no>x</acc_no>
          <ac_ccy>y</ac_ccy>
          <avail_bal>z</avail_bal>
      </detail>
      <detail>
          ...
      </detail>
    </responsedata>
</page>

我正在尝试将上面的内容转换为如下所示:

<detail>
    <ref_no>xyz</ref_no>
    <accounts>
         <account>
            <Account_no>x</Account_no>
            <Curr>y</Curr>
            <Avail_Bal>z</Avail_Bal>
         </account>
         <account>
            ...
         </account>
    </accounts>
</detail>        

为此,我使用了以下 smooks 配置:

<ftl:freemarker applyOnElement="responsedata">
    <ftl:template><!--<?xml version="1.0" encoding="UTF-8" ?>
    <DETAIL>
      <Ref_No>????<Ref_No> //how to bring the ref_no here
      <Accounts>
        <?TEMPLATE-SPLIT-PI?>
      </Accounts> 
    </DETAIL>
    --></ftl:template>
</ftl:freemarker>


 <ftl:freemarker applyOnElement="detail">
    <ftl:template><!--
    <Account>
       <Account_no>${detail.acc_no}</Account_no>
       <Curr>${detail.ac_ccy}</Curr>
       <Avail_Bal>${detail.avail_bal}</Avail_Bal>
    </Account>
     --></ftl:template>
 </ftl:freemarker>

除了参考号之外,我可以转换其他所有内容。任何有关如何实现这一目标的建议将不胜感激。

I am trying to transform an xml from one format to another using smooks. The source xml looks like what is shown below:

<page>
    <responsedata>
      <header>
          ...
          <ref_no>xyz</ref_no>
      </header>
      <detail>
          <acc_no>x</acc_no>
          <ac_ccy>y</ac_ccy>
          <avail_bal>z</avail_bal>
      </detail>
      <detail>
          ...
      </detail>
    </responsedata>
</page>

I am trying to tranform the above to something like this:

<detail>
    <ref_no>xyz</ref_no>
    <accounts>
         <account>
            <Account_no>x</Account_no>
            <Curr>y</Curr>
            <Avail_Bal>z</Avail_Bal>
         </account>
         <account>
            ...
         </account>
    </accounts>
</detail>        

For this, I used the following smooks configuration:

<ftl:freemarker applyOnElement="responsedata">
    <ftl:template><!--<?xml version="1.0" encoding="UTF-8" ?>
    <DETAIL>
      <Ref_No>????<Ref_No> //how to bring the ref_no here
      <Accounts>
        <?TEMPLATE-SPLIT-PI?>
      </Accounts> 
    </DETAIL>
    --></ftl:template>
</ftl:freemarker>


 <ftl:freemarker applyOnElement="detail">
    <ftl:template><!--
    <Account>
       <Account_no>${detail.acc_no}</Account_no>
       <Curr>${detail.ac_ccy}</Curr>
       <Avail_Bal>${detail.avail_bal}</Avail_Bal>
    </Account>
     --></ftl:template>
 </ftl:freemarker>

Except for the reference number, I am able to transform everything else. Any suggestions on how to accomplish this would be highly appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

葮薆情 2024-10-20 13:13:05

您能否使用 Smooks javabean 功能将该值绑定到 Java 对象(只需放入 HashMap),然后从 Freemarker 模板访问该 bean?

Could you use the Smooks javabean capability to bind that value to a Java object (just put in a HashMap) and then access that bean from the Freemarker template?

西瓜 2024-10-20 13:13:05
<resource-config selector="header">
   <resource>org.milyn.javabean.BeanPopulator</resource>
   <param name="beanId">header</param>  
   <param name="beanClass">java.util.HashMap</param>
   <param name="bindings">
      <binding property="refNo" selector="header/ref_no" />
   </param>
</resource-config>

<resource-config selector="header">
   <resource type="ftl">
       <![CDATA[<detail>
       <ref-no>${header.refNo}</ref-no>
        ...
       </detail>]]>  
       </resource> 
</resource-config>
<resource-config selector="header">
   <resource>org.milyn.javabean.BeanPopulator</resource>
   <param name="beanId">header</param>  
   <param name="beanClass">java.util.HashMap</param>
   <param name="bindings">
      <binding property="refNo" selector="header/ref_no" />
   </param>
</resource-config>

<resource-config selector="header">
   <resource type="ftl">
       <![CDATA[<detail>
       <ref-no>${header.refNo}</ref-no>
        ...
       </detail>]]>  
       </resource> 
</resource-config>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文