有人可以帮助我,除了我有.
在servlet中,我将国家列表发送给jsp
request.setAttribute("countries", allCountryList);
在jsp中我想在下拉列表中显示它们,我用来用foreachddl填充值
 <c:forEach var="country" items="${requestScope.countries}" >
            <option value="${country.countryNo}">${country.countryName}</option>
  </c:forEach>
奇怪的例外是,即使存在,countryName也不存在
javax.el.PropertyNotFoundException: Property 'countryName' not found on type ps.iugaza.onlineinfosys.entities.Country
这是国家级
public class Country {
private String countryName;
private int countryNo;
public String getCoutnryName() {
    return countryName;
}     
public int getCountryNo() {
    return countryNo;
}
}
| 归档时间: | 
 | 
| 查看次数: | 424 次 | 
| 最近记录: |