Hello,

I'm in the process of migrating my project from Spring 2.0.8/SWF1.0.5 to Spring 2.5.4/SWF2.0.1-Release.

I have read that there are problems with checkbox bindings in this release but as the symptoms I see are different from those already noted I would appreciate some input.

When the form is submitted the relevant method is called

Code:
	

jsp:

<td><form:checkbox path="locations" value="${location}"/>${location}</td>

(${location} read from list)

bean:

public void setLocations(List<String> locations) {
		...
	}
but for me locations is null

Others have reported exceptions which I've not had, can anyone tell me if there is any difference in the way that Spring handles Collection<T> bindings in this release compared with Spring 2/WF1?

Cheers