Thanks MMinella.
I was able to use the solution from Dave Syer as per the URL below by using Log4j DispatcherAppender. It fits perfectly in our Spring batch application. This allowed us to have...
Type: Posts; User: msns3ka; Keyword(s):
Thanks MMinella.
I was able to use the solution from Dave Syer as per the URL below by using Log4j DispatcherAppender. It fits perfectly in our Spring batch application. This allowed us to have...
Ok, Got me thinking in the right direction! Thanks Jeff.
I am thinking of getting the respective File Appenders at runtime as configured in log4j xml, activate it @beforeJob and then de-activate...
Hi There,
We have a single Spring batch application which consists of 3 different jobs: The following jobs have their own processors, writers etc. Each job does different things i.e. they are...
Hi There,
We are building a single Spring Integration/Batch application. We have various file/jms inbound adapters to receive data and invoke jobs accordingly.
We also would like to provide...
Found it :-) I used FixedBackOffPolicy.
Hi There,
Is it possible to configure RetryTempate with MaxAttempts and Delay between the attempts?
We have a situation where we have composite processors configured and each processor will...
Hi There,
Wondering if the following scenario is possible in Spring Batch.
The job will do the following
STEP1:
Reader: Select statement (e.g. select * from tableA where status =...
Thanks Artem!
Just wondering about the code snippet above, are you referring the code as in jconsole context?
Assuming we also need to start the application with jmx properties for the JMX part...
Hi There,
Just wondering if the following scenario is possible in SI:
Poll input folder for files
Validate File - If Validation fails stop 'file:inbound-channel-adapter'; move file to...
Dave,
I tried that (increasing max-varchar-length to 3000) and still the same error. Then I increased the size of field STEP_SHORT_CONTEXT to 3000 (in table BATCH_STEP_EXECUTION_CONTEXT) and then...
Solved this issue!
Table BATCH_STEP_EXECUTION_CONTEXT details (not correct in my previous post above)
STEP_EXECUTION_ID NUMBER (19,0)
STEP_SHORT_CONTEXT VARCHAR2 (2500 CHAR)...
Hi there,
I am using Spring Batch 2.1.0 and Spring Core 3.0.2. I get the following error: [Has this error been resolved] How to prevent this error? We are using Oracle 10g RAC
2010-04-22...
Hi there,
I would want to initialize a .properties file (e.g. app.properties) when using CommandLineJobRunner as below: I tried the following but the properties file is not being initialized.
...
Hi there ,
Just wondering will it be possible to raise an alert (send an email or log to a log file) when we receive a duplicate file ? My inbound-channel-adapter definition is as below ...
...
Thanks,
I made a huge progress but stuck up with the following error: [I have already installed jar files 'com.springsource.com.thoughtworks.xstream-1.3.1.jar' ,...
Hi gdickens,
Thanks.
I am using a simple jar file with a Manifest [changed as per your instructions]
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Hi There,
I am trying to deploy a spring application (which is a combo of spring integration and Batch) to Spring DM server 2.0 but I am stuck with the following error. Not sure what it means! ...
Hi there,
I have a non-web spring batch application and would want to know how to deploy this application to DM Server.
So far I have been using spring batch application via the main method...
Thanks Guys. I will go with Chudak's solution.
Thanks dvestal.,
But we are trialling spring batch and wondering if the the cumulative checksum is possible in spring batch infrastructure at all?
Thanks.
Hi there,
I have a batch requirement as below:
1. Read batch file [can be csv or pipe delimited]
2. Validate the entire File [file has header/detail rows/trailer]
3. For each detail row call...
Thanks for the clarification. I need to look at a different approach.
Hi,
I am new to Spring.
Basically I want any errors that is thrown up in the processors (MyProcessor1 or MyProcessor2) to be captured to a separate log file.
'writeToSkippedErrorLog ' is...
Hi there,
I am trying to log errors from listener 'CompositeItemProcessListener' but looks like the log file is always empty. Whenever I encounter error in one of the processors (MyProcessor1 or...
Thanks Jason, I got it...[I am a newbie to spring] ....I think with Spring you have to think in terms of DI as opposed to conventional programming methods. Spring is Awesome!