<select name="search_salesman_id" style="width:120px;">
Iterator iterator = userFactory.listUser();
while (iterator.hasNext()) {
    user = (User) iterator.next();
    out.println("<option value=\"" + user.getID() + "\">" + user.getUsername() + "</option>");
}
</select>之前写了这样一个jsp代码,现在想把它换成struts2,请问怎么写在struts2的select标签里面