POJO « Thread « Spring Q&A





1. multi-threads and POJO    forum.springsource.org

First of all: Spring doesn't add concurrency control to your structures. When multiple threads are using the same People object, and People object is mutable, you need to add synchronization. There ...