As far as i know that java.util.Date is mutable, so it\'s not thread-safe if multiple threads tried to accessing and modifying it. How do we use client-side loc
There is no simple solution to create a thread-safe wrapper of Date class. The best way is to synchronize all usages of it's objects by using synchronized blocks.