I'm currently using Java 6 with Spring 3.
I have some processes that are reading the same file, in this case is XML file.
Also, this processes need to update the content of that file which is I need to update a date.
The process run simultaneously, so there's a possibility they will read and try to write at the same time.
I heard about ReadWriteLock, which can have multiple reader and only 1 writer. I'm considering that at the moment. But because the process is running quickyly,
There will be a scenario when process A is currently writing an update, and process B is waiting and another process C is waiting for writing the update. Process B might be just an old update if process B is updating the same element.
Is there any idea how can I achieve this?
Thanks,