Hi I have a model to be render (output only).
i get this error.Code:<c:forEach items="${foundCars}" var="car"> <tr> <td>${car.model}</td> <td>${car.make}</td> </tr> </c:forEach>
I don't want to add setters to the object.. since its "read-only".Code:javax.el.PropertyNotFoundException: Property 'model' not found on type com.cars.CarModel
Thanks.


Reply With Quote