Java Vectors are syncronized by default. You don't have to synchronize is explicitly. Even if you do so there is no extra benefit
Use of Java Vector is highly discouraged and instead Syncronized "ArrayList" is suggested. There are clearly benefits of the same.
Also please refer Are Vectors Obsolete ?