The most obvious difference is the synchronized collections.
For a synchornized map, putAll will add all entries as a single operation. If you have two threads attempting to putAll the same keys with different values, you will only get one complete set of values. i.e. either from the first or second thread, but not some combination.
If you use put() repeatedly in two threads, you can get any combination of values being retained which may not be a valid combination.
I have seen/implemented transactional operations for put() and putAll(). When putAll is transactional, all or none key/values will be added. e.g. if a key or value cannot be added for some reason. If you are using put() only the indiviudal key/value (and possibly any not added) will be stopped, performing a potentially incomplete update.