I have a strange issue with dropdown boxes in jsp/servlet. Here it is...
<% for(L
As said by BalusC in his answer the problem is with your value assignment.
Modify your code as :
<% for(LocationDO locationDO : locationList) {%> <%=locationDO.getLocationName().trim()%> <%} %>
Hope this helps.