were u able to fix the issue? if not, try to clear your spring batch tables.
Type: Posts; User: kissen; Keyword(s):
were u able to fix the issue? if not, try to clear your spring batch tables.
I would like to know what is the default date format used by CommandLineJobRunner to convert job parameters into date objects to feed into the spring batch job?
Is there a way to override or...
Has anyone got this working?
<bean id="writer2" class="org.springframework.batch.item.xml.StaxEventItemWriter"
scope="step">
<property name="marshaller">
<bean...
If there a way to use a (custom) partitioner to be able to read a large xml file and pass smaller chunks for subsequent processing using the partitioning technique?
Yes this is ok I can configure readers/writers for each of the xsds. What I wanted to know if there is a way within spring batch to convert between the different xsds.
Basically the XSDs contain...
I have a requirement to read a given xml, process invoice data within that xml file and write the xml out.
The input xml for input is defined by one xsd and the out xml by another xsd.
What's...
The file contains details about the job being run. I am using the partitioning technique with small xml files being processing by each thread. These xmls contains invoice items details.
I want to...
Hi,
I am using the following task executor
<bean id="taskExecutor"
class="org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor">
Hi,
We are currently using the SimpleAsyncTaskExecutor within our batch application whereby the concurrencyLimit is configurable using a job parameter as shown below:
<bean...
Please see the following website. I also had the same issue. This occurs because multiple threads are trying to write to the same outpu file, which is not possible.
You have to have several output...