show/hide this revision's text 3 added links as requested by question owner

Yes you have to synchronize access to collections objects.

Alternatively, you can use the "concurrent" synchronized wrappers around any existing object. See Collections.synchronizedCollection(). For example:

List<String> safeList = Collections.synchronizedList( originalList );

However all code needs to use the safe version, and even so iterating while another thread modifies will result in problems.

To solve the iteration problem, copy the list first. Example:

for ( String el : safelList.clone(safeList.clone() )
{ ... }

For more optimized, thread-safe collections, also look at java.util.concurrent.

show/hide this revision's text 2 typo

Yes you have to synchronize access to collections objects.

Alternatively, you can use the "concurrent" wrappers around any existing object. For example:

List<String> safeList = Collections.concurrentListCollections.synchronizedList( originalList );

However all code needs to use the safe version, and even so iterating while another thread modifies will result in problems.

To solve the iteration problem, copy the list first. Example:

for ( String el : new ArrayList<String>( originalList safelList.clone() )
{ ... }
show/hide this revision's text 1

Yes you have to synchronize access to collections objects.

Alternatively, you can use the "concurrent" wrappers around any existing object. For example:

List<String> safeList = Collections.concurrentList( originalList );

However all code needs to use the safe version, and even so iterating while another thread modifies will result in problems.

To solve the iteration problem, copy the list first. Example:

for ( String el : new ArrayList<String>( originalList ) )
{ ... }