Jsp page gives me a List, but my class want a Set
问题 I have a class called Menu, with a field called voceMenuList, that contains the menu items like "Home", "contact" etc. public class Menu implements Serializable{ private Set<VoceMenu> voceMenuList; public void setVoceMenuList(Set<VoceMenu> voceMenuList) { this.voceMenuList = voceMenuList;} public Set<VoceMenu> getVoceMenuList() { return voceMenuList;} } This is my jsp page, where I print in a input-text the fields of the object VoceMenu, in order to edit the value <c:forEach items="${menu