Search:

Type: Posts; User: elster; Keyword(s):

Search: Search took 0.02 seconds.

  1. Hi again, This problem only occurs using...

    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,...
  2. late-binding for ChunkOrientedTasklet does not work

    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...
  3. RecoverableDataAccessException in Spring Batch Admin

    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...
  4. Hi guys, PathMatchingResourcePatternResolver...

    Hi guys,

    PathMatchingResourcePatternResolver does the trick:

    Code:
    <bean id="deleteFilesTasklet" class="com.siemens.ces.sdsync.DeleteFilesTasklet"
    scope="step">
    <property...
  5. Hi guys, PathMatchingResourcePatternResolver...

    Hi guys,

    PathMatchingResourcePatternResolver does the trick:

    Code:
    <bean id="deleteFilesTasklet" class="com.siemens.ces.sdsync.DeleteFilesTasklet"
    scope="step">
    <property...
  6. Replies
    1
    Views
    245

    The web.xml of STS Spring Batch Admin template...

    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...
  7. Replies
    1
    Views
    245

    404 errors in Spring Batch Admin

    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...
  8. DeleteFilesTasklet with filename pattern property

    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...
  9. How to define a pattern for multiple filetypes as MultiResourceItemReader 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...
  10. I guess injecting MultiResourceItemReader into...

    I guess injecting MultiResourceItemReader into the processor and then callling its getCurrentResource method is the right approach. I will try and let you know...
  11. resource file name access in processor after read by multiresourcereader

    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...
  12. Of course you're right, thanks, I thought this...

    Of course you're right, thanks, I thought this skipping mechanism works only with non runtime exeptions.
  13. Hi, I am talking about...

    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...
  14. Hi, I would like to throw...

    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...
  15. how to leverage spring batch's exception handling in RecordMapper implementation

    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"...
  16. Figured it out by my own. It was that well-known...

    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...
  17. Unit test of writer with job parameters in step scope

    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...
Results 1 to 17 of 21