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 ...