我的 jsf 页面中有这一行
<h:dataTable value="#{customer.getCustomerList()}"
在我的豆子里,我有
public List<Customer> getCustomerList(){
return customerBo.findAllCustomer();
}
我正在将 JSF 2.0 与 Eclipse Helios 与 servlet 2.5 一起使用,当我验证时我得到了
Expression must be a value expression but is a method expression
我该如何解决这个问题?