I am using select tag to display list of countries in a jsp. But when i run the application it is giving me the below error.
tag 'select', field 'list', name 'country': The requested list key 'countries' could not be resolved as a collection/array/map/enumeration/iterator type.
In plain English - 'countries' must be a collection of objects. These objects would be String(s) - names of countries, in your case. Please check if this is the case. Also check the scope of 'countries'
Regards
Experience and talent are independent of age
Sirisha Gundelli
Greenhorn
Joined: Jul 23, 2009
Posts: 3
posted
0
Thanks Himanshu for your reply.
private Collection<CountryNames> countries = new ArrayList<CountryNames>();