Hi all,
I have a very similar problem but with in-memory map. Here is the exception I get:
java.util.ConcurrentModificationException
at...
Type: Posts; User: alexbt; Keyword(s):
Hi all,
I have a very similar problem but with in-memory map. Here is the exception I get:
java.util.ConcurrentModificationException
at...
Lucas and Dave,
Thank you very much for your help. You did direct me to the right place with your tips. We found a workaround for our issue. But for the future, wouldn't it be good to have a...
Thank you Dave for the answer.
Unfortunatelly, I don't see how I can use this adapter in our configuration. We use JpaTransactionManager, and our server runs on Jetty. As far as I understand the...
Lucas, thank you for your answer.
I'll try to describe my use case as far as I can.
We ported our code to 1.0.0.FINAL.
We have a process that listens to a socket and receives data from a sending...
org.springframework.batch.core.step.item.ItemOrientedStep.execute opens transaction programaticaly. My questoion was - how can I change its isolation?
Thanks.
Hi all,
My question is related to transaction isolation for batch updates in spring-batch.
I would like to set custom transaction isolation on a transaction supplied by spring-batch. How can it...
Hi all,
I'm using spring-batch 1.0.0.FINAL.
My scenario is as follows:
I read files and inserts their contents into database tables.
I have a case when I may get a foreign key constraint...
Dave, thank you very much. You were right as to the policy. I used NeverRetryPolicy and it did the trick. Now I'm able to get the wrong record and skip it without any problem. All the correct records...
Hi everybody,
We use spring-batch-1.0.0.m3 to run our jobs for inserting data from flat files into the database tables. We figured out that running iBatis batchUpdate inserting data from a flat...
Hi everybody,
I have a question regarding chunk retrying on exception.
My use case is as follows: I have a directory to which an external process writes files. A listener listens to the...