JSTL Problem
Hi I get an exception
org.apache.jasper.JasperException: /WEB-INF/jsp/hello.jsp(12,0) According to TLD or attribute directive in tag file, attribute items does not accept any expressions
the code in problem is
<c:forEach var="prod" items="${ model.products }">
${prod.products} <i>${prod.price}</i>
</c:forEach>
the declaration and content for model is
String now = new Date().toString();
Map myModel = new HashMap();
myModel.put("now", now);
myModel.put("products", productManager.getProducts());
productManager.getProducts() return a List
where is my mistake ? i m using standard.jar from jakarta-taglibs but i tried repacing it with the one from netbeans and still the same.

