Hi I have a model to be render (output only).

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

Thanks.