如何在BeanIO中引用外部xml文件?

时间:2016-05-20 18:00:53

标签: java xml javabeans bean-io

我一直在阅读BeanIO的模板部分,但我还没有找到任何特定于带模板的外部文件。基本上,我正在尝试创建一个xml文件,该文件将保存我的所有模板并从其他文件引用特定模板。

我有这个文件mytemplates.xml

<beanio>

    <template name="theTemplate">
        //template fields
    </template>
</beanio>

我有另一个名为myfile.xml的文件,它将使用mytemplates.xml中的模板

<beanio>
    <stream name="aaa" format="fixedlength">
            <include template="theTemplate"/>
    </stream>
</beanio>

有没有办法实现这个目标?

1 个答案:

答案 0 :(得分:1)

为了将来的参考,我找到了通过回购导航的答案,有人也在beanIO组上提到了它。希望能帮助到你。

<beanio xmlns="http://www.beanio.org/2012/03" 
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://www.beanio.org/2012/03 http://www.beanio.org/2012/03/mapping.xsd">



<--I had to go up to package level to make it work ie: org/app/myapp/mytemplates.xml-->
  <import resource="classpath:mytemplates.xml"/>

  <!-- the rest of your file -->
</beanio>