Hi again,
This problem only occurs using 2.2.0.RC1. It works as expected in 2.1.9. Was the late-binding feature in ChunkOrientedTasklet removed in 2.2.0? Afair it was just added in 2.1.7...
Br,...
Type: Posts; User: elster; Keyword(s):
Hi again,
This problem only occurs using 2.2.0.RC1. It works as expected in 2.1.9. Was the late-binding feature in ChunkOrientedTasklet removed in 2.2.0? Afair it was just added in 2.1.7...
Br,...
Hi,
I cannot get late-binding working in the following configuration using Spring Batch 2.2.0.RC1.
<batch:step id="splitgidcsv">
<batch:tasklet start-limit="3">
<batch:chunk...
Hi,
I successfully deployed spring batch admin to tomcat 7.0, however, I repeatedly get the below exception when accessing the url for the first time after longer pauses (e.g. over night). After...
Hi guys,
PathMatchingResourcePatternResolver does the trick:
Code:
<bean id="deleteFilesTasklet" class="com.siemens.ces.sdsync.DeleteFilesTasklet"
scope="step">
<property...
Hi guys,
PathMatchingResourcePatternResolver does the trick:
Code:
<bean id="deleteFilesTasklet" class="com.siemens.ces.sdsync.DeleteFilesTasklet"
scope="step">
<property...
The web.xml of STS Spring Batch Admin template project was configured so that only /batch urls were propagated to the Batch Servlet so I added this tag to the web.xml. Now all links are displayed...
Hi,
My STS tc Server gives me 404 page not found errors when I try to access specific jobs, for instance when clicking on one of the job ids in the Recent and Current Job Executions view. This is...
Hi,
I would like to implement a tasklet deleting files matching a certain pattern in 'MultiResourceReader' style. What is the best approach to teach the tasklet class to evaluate the bean property...
Hello,
can somebody please give me advice how to configure the MultiResourceItemReader so that all *.txt and all *.csv files are read?
I am thinking about something like:
<bean...
I guess injecting MultiResourceItemReader into the processor and then callling its getCurrentResource method is the right approach. I will try and let you know...
Hi,
any smart suggestions how to access the name of a file inside a processor when the file was read by a MultipleResourceReader configured with wild card pattern before?
In the processor, I...
Of course you're right, thanks, I thought this skipping mechanism works only with non runtime exeptions.
Hi,
I am talking about org.springframework.ldap.ldif.batch.MappingLdifReader<T>. This class reads entries from an ldif file and has a member interface bean...
Hi,
I would like to throw com.test.SyncException in mapRecord like I can do in a reader's read method. Later on, I want to log this exception by a skip listener. In a reader's read method this is...
Hello,
I configured my spring batch ldap chunk processing to skip records when a certain type of exception occurs:
<batch:chunk reader="multiResourceReader" processor="userProcessor"...
Figured it out by my own. It was that well-known problem that in step scope interfaces have to be used for autowired beans instead of implementations. I replaced LdapTemplate by LdapOperations as...
Hi,
I have trouble getting a JUnit test working which tests an ItemWriterAdapter by use of a self-implemented LdapTestUser helper class. I have already learned that TestScopeExecutionListener has...