Does the content in the next lookup help in my jsp view?
List products;
products= dao.getProductList;
request.setAttribute("products", products);
<c:forEach var="product" items="${products}">
<c:out value="${product. <-- is content assist here on the product model javabean??
I think this is not because Eclipse knows what I'm working on Product.java?
source
share