Spring / Spring Data Access
How do you handle High-volume Transaction Processing in J2EE?
Leverage batch processing to process the work off-line in batch.
Use Real-time asynchronous processing such as fine-grained timers or asynchronous event triggers (such as JMS) to pass responsibility from on-line to back-end function.
More Related questions...