June 2014
Beginner to intermediate
304 pages
7h 25m
English
Let's extend this technique to show product images in our product listing page and in the product detail page. Perform the following steps:
products.jsp; you can find products.jsp under the /src/main/webapp/WEB-INF/views/ directory in your project. Now, add the following <img> tag after the <div class="thumbnail"> tag:<img src="<c:url value="/resource/images/${product.productId}.png"></c:url>" alt="image" style = "width:100%"/>product.jsp and add the following <img> tag after the <div class="row"> tag:<div class="col-md-5">
<img src="<c:url value="/resource/images/${product.productId}.png"></c:url>" alt="image" style = "width:100%"/>
</div>Read now
Unlock full access