2

我是 Spring Batch 的新手,我必须设计一个从数据库读取数据并将数据写入多个 XML 的任务,输出格式如下

    <Records xmlns"somevalue" ...>
  <Version>1.0</Version>
  <SequenceNo>1</SeqeunceNo>
  <Date>12/12/2012 12:12:12 PM<Date>
  <RecordCount>100</RecordCount><!--This is total number of Update and Insert txns-->
  <SenderEmail>asds@asds.com</SenderEmail>
  <Transaction type="Update">
    <TxnNo>1</TxnNo>
    <Details>
      <MoreDetails>
      </MoreDetails>
    </Details>
  </Transaction>
  <Transaction type="Insert">
    <TxnNo>2</TxnNo>
    <Details>
      <MoreDetails>
      </MoreDetails>
    </Details>
  </Transaction>
  <Transaction type="Update">
  </Transaction>
  <Transaction type="Update">
  </Transaction>
</Records>

请建议我应该使用什么解组器以及如何开始。最终稍后我必须将其转换为多线程以进行优化和性能。

4

2 回答 2

0

无需编写自己的作家。Spring 包含一个 MultiResourceItemWriter 将您的项目写入多个 xml。我正在使用 jaxb2Marshaller 编写复杂的 XML。

<bean id="multiItemWriter" class="org.springframework.batch.item.file.MultiResourceItemWriter"> 
    <property name="resource" value="file:data/output/output.xml"/> 
    <!-- <property name="resourceSuffixCreator" ref="resourceSuffixCreator"/> --> 
    <property name="saveState" value="true"/> 
    <property name="itemCountLimitPerResource" value="10"/> 
    <property name="delegate" ref="itemWriter" />
</bean>

<bean id="itemWriter" class="org.springframework.batch.item.xml.StaxEventItemWriter">
    <!-- <property name="resource" value="file:data/output/output.xml" /> -->
    <property name="marshaller" ref="customVrdbMarshaller" />
    <property name="rootTagName" value="recordings" />
    <property name="overwriteOutput" value="true" />
</bean>

<bean id="customVrdbMarshaller" class="org.springframework.oxm.jaxb.Jaxb2Marshaller">
    <property name="classesToBeBound">
        <list>
            <value>your.model.model.Albums</value>
        </list>
    </property>
</bean>
于 2013-03-06T09:13:20.990 回答
0

您应该编写一个编写 XML 文件的 Writer。选择一个库并在 Writer 中使用它。

小心为未来的多线程优化编写线程安全代码。

Spring Batch 示例中的一个示例:XML 处理

于 2012-07-03T09:11:28.990 回答