批处理作业为:
从CSV文件读取
为csv中的每个记录(行)创建一个XML文件,名称为Patent.ID.xml(其中ID是csv中的一个字段,Patent是我的模型类),例如:1.xml,2.xml
问题是我找不到从csv文件动态设置文件名到每个ID的方法
这是我的配置:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:batch="http://www.springframework.org/schema/batch"xmlns:task="http://www.springframework.org/schema/task"
xmlns:util="http://www.springframework.org/schema/util"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/batch
http://www.springframework.org/schema/batch/spring-batch-2.2.xsd
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/util
http://www.springframework.org/schema/util/spring-util-3.2.xsd">
<!-- My beans -->
<bean id="patent" class="com.example.model.Patent" scope="prototype" />
<bean id="xmlsuffix" class="com.example.filename.PatentFileSuffixCreator"/>
<bean id="noInputException" class="com.example.listener.NoWorkFoundStepExecutionListener"/>
<batch:job id="csvtoxml">
<batch:step id="step1">
<batch:tasklet>
<batch:chunk reader="fileReader" writer="multiResourceItemWriter" commit-interval="1">
</batch:chunk>
<batch:listeners>
<batch:listener ref="noInputException"/>
</batch:listeners>
</batch:tasklet>
</batch:step>
</batch:job>
<bean id="multiResourceItemWriter"
class="org.springframework.batch.item.file.MultiResourceItemWriter">
<property name="resource" value="file:xml/#{patent.ID}" />
<property name="delegate" ref="XMLwriter"/>
<property name="itemCountLimitPerResource" value="1"/>
<property name="resourceSuffixCreator" ref="xmlsuffix"/>
</bean>
<bean id="XMLwriter"
class="org.springframework.batch.item.xml.StaxEventItemWriter">
<property name="marshaller" ref="patentUnmarshaller" />
<property name="rootTagName" value="Patents" />
</bean>
<bean id="patentUnmarshaller"
class="org.springframework.oxm.xstream.XStreamMarshaller">
<property name="aliases">
<map>
<entry key="Patent"
value="com.example.model.Patent" />
</map>
</property>
</bean>
<bean id="fileReader"
class="org.springframework.batch.item.file.FlatFileItemReader" scope="step">
<property name="lineMapper" ref="lineMapper"/>
<property name="resource" value="file:dbbrev_sample_m.csv"/>
<property name="linesToSkip" value="1"/>
</bean>
<bean id="lineMapper"
class="org.springframework.batch.item.file.mapping.DefaultLineMapper">
<property name="fieldSetMapper" ref="fieldSetMapper"/>
<property name="lineTokenizer" ref="lineTokenizer"/>
</bean>
<bean id="lineTokenizer"
class="org.springframework.batch.item.file.transform.DelimitedLineTokenizer">
<property name="delimiter" value=","/>
<property name="names" value="ID,TYPE,NOPUBLICATION" />
</bean>
<bean id="fieldSetMapper"
class="org.springframework.batch.item.file.mapping.BeanWrapperFieldSetMapper">
<property name="targetType" value="com.example.model.Patent"/>
</bean>
</beans>
创建一个ItemWriteListener
,注入multiResourceItemWriter
Bean并将侦听器绑定到您的步骤。
在使用该项目ItemWriteListener.beforeWrite()
创建新ResourceSuffixCreator
对象时,您将以创建资源扩展(后缀)为基础。
MultiResourceItemWriter.resource
可能需要更改,file:xml/
因为1.xml,2.xml等将使用ResourceSuffixCreator
为您正在编写的每个项目动态创建的自定义追加。
该解决方案很脏,并且(可能)由于以下原因而起作用commit-interval=1
:如果您更改我的答案(可能)将失败。
我希望我很清楚,英语不是我的母语。
问题内容: 我想将String放入比给定单元格宽度更长的字符串中。如何动态设置,以便可以读取整个String?这是一个例子: 在这里,您将看到将给定单元格较长的每个文本换行的代码 谢谢,但是我想根据字符串的长度动态地实现RowHeight。我想读取单元格中的整个字符串/文本。有什么建议? 我是Java初学者,这是我的第一个问题。我很高兴得到答案。 问题答案: 使用JTextArea作为呈现组件时会
我有一个Spring批处理程序,它从数据库中读取数据并处理它,并将(使用ItemWriter)插入到数据库中的其他表中。在这里,我使用了一系列针对ItemReader、Item处理机和ItemWriter的SQL查询。 我的要求是将所有这些查询存储在一个具有参数和值格式的表中,并通过一个数据库调用来检索它,然后将其传递给ItemReader或Item处理机或ItemrWriter。因此,如果将来查
我正在尝试从下拉列表中获取值。我有下拉列表,我有我想要的值,但我不知道如何将它们相互链接。所以类别的值应该在下拉列表中,然后该字符串中的图像值应该是结果... 这是名为ill.json的json文件数组 类别值进入下拉列表,然后结果应该是图像值:这是我的下拉列表... ... 我就是这样得到这些图像的...
我想做的是根据滚动的数字将Imageview设置为不同的骰子侧。
我正在drawable文件夹中存储与项目相关的图像。我还将图像名称存储在字符串变量中,并尝试动态地将这些图像设置为imageview。但是图像没有显示出来。请在这方面帮助我。 我的代码: 在上面的代码中,“图像名称”是包含图像名称的字符串变量。 提前谢谢
问题内容: 在上述情况下,bean中的属性随环境而变化。在开发时,config的引用更改为。并在阶段中将参考更改为。问题在检入spring文件时出现。每次签入之前,我们都必须分析config的引用。如果config的引用具有签入的值,我们可能必须解释很多问题。 有什么解决方案可以使其自动化? 注意:春季版本为2.0.1 问题答案: 使用Spring的PropertyPlaceholderConfi