Не могли бы вы помочь мне.Я хочу показать мои первые 3 объекта из продукта, я не знаю, как это должно быть.Я пытаюсь использовать последовательность листьев тимьяна, но она не работает.Может быть, кто-нибудь подскажет мне, как это можно сделать.
HTML:
<th:block th:each="product:${products}">
<a th:class="production_Page" th:href="@{'product/'+${product.id}}"> <p
th:text="${product.productName}"/></a>
<a th:class="production_Page"
th:href="@{'productDelete/'+${product.id}}">Delete</a>
<a th:class="production_Page"
th:href="@{'productEdit/'+${product.id}}">Edit</a>
<img th:class="productImage" th:src="${product.pathImage}"/>
<br/>
</th:block>
Контроллер:
@GetMapping("/products")
public String seeAllProductsIntoAList(Model model){
model.addAttribute("products", productService.findAll());
model.addAttribute("categories", categoryService.findAll());
return "/productView/products";
}
Было бы здорово, если бы кто-нибудь намекнул мне с этимвыпуск.
Спасибо.