Look here (including the second comment):
http://code.google.com/p/google-web-toolkit/issues/detail?id=5728
Type: Posts; User: vincenzo.vitale; Keyword(s):
Look here (including the second comment):
http://code.google.com/p/google-web-toolkit/issues/detail?id=5728
Hi there,
tomorrow I'm going to present Spring Batch in my department @ TomTom.
Have someone a Power Point presentation you can provide me as starting point... so I will just concentrate on...
In my project we decided to generate the report in a "black-box" service that accepts the file path and the limit time interval.
So this means not using Spring Batch for generating it.
Then the...
Hi Lucas,
yes, I'm trying to separate transactions for meta-data from the 'business transactions'. What we thought was to physically separate the operational database from the statistical one,...
I'm not really an expert on transaction management... so sorry if the question doesn't make sense... :-)
The tables I want to maintain in sync (the spring batch tables) are in the same datasource,...
One update...
For sure the previous configuration was wrong in the propagation levels. Because a new transaction was always created..
But also this one:
<tx:advice id="txAdvice"...
Hi,
I splitted the datasource for the Business object from the datasource used by Spring Batch. And my problem is that if I cause a runtime exception while the database job data is inserted (like...
Thanks for the suggestion.
I created for a FileRenameException extending RuntimeException.
And I also attached the new listener:
/**
* Base listener for step error handling.
*
*...
Cool.
Ciao,
V.
It worked really fine writing a tasklet.
So now if just the file renaming fails it will be done again when the job is called again with the same parameter (the file name).
Why not implementing...
Hi Lucas,
thanks for your answer.
I think I will follow your suggestion using a tasklet for changing the filename. Thanks also for confirming the date.
Bye,
Vicio.
Update: the main problem should be related to this http://jira.springframework.org/browse/BATCH-532
BTW, do you think it's better to configure a tasklet?
When 1.0.1 will be officially release?...
Hi,
we configured one step inside a job to read from a file and upload the items to a database. After the step is complete we want to change the file name.
If for some reason the name change...