Displaying List of Objects in Table using Thymeleaf

Displaying List of Objects in Table using Thymeleaf

3 Comments

A real common task is to display a list of objects fetched from the database in a HTML table on a webpage. Thymeleaf has a handy tag which allows us to iterate over a list of objects, and generate HTML code to display a table row for each object. The HTML generated really does not “need” to be a table row, but this a very common use case. Thymeleaf will simply generate the template code contained within the HTML div tags.

Typically, in your Spring MVC controller you will get a list of objects, and bind it to a property which is returned to the view layer. Ideally, your controller should be unaware of the source of the list. Often the source is ultimately a database access through a Spring service injected into the controller.

Free Introduction to Spring Tutorial

Are you new to the Spring Framework? Checkout my Free Introduction to Spring Online Tutorial.

In the video example below, I show you how to get bind a list of Java objects to a property in the model returned to the Thymeleaf template engine. Then I show you how to iterate over the list to generate an HTML table. At the end of the demonstration, I run the example in Tomcat using Spring Boot and show you the HTML code generated by Thymeleaf.

 

About jt

    You May Also Like

    3 comments on “Displaying List of Objects in Table using Thymeleaf

    1. May 25, 2016 at 10:35 pm

      excellent tutorial

      Reply
      • May 16, 2020 at 8:46 am

        Excellent. But also provide source codes

        Reply
    2. December 13, 2017 at 11:22 am

      Scott, So this is cool but what about binding a Object and its properties to a dynamic number of rows in a POST situation.

      Say I am implementing a Cart solution. I have a Payment object PaymentItem { reference: value, name: value, description: value, amount: value}. (I know this isn’t proper JSON but you should be able to get the gist of it).

      Now in my page the number of rows in a table my be incremented dynamically. I’m trying to figure out how to bind using SpringBoot+Thymeleaf for each row’s Payment Item uniquely as a separate PaymentItem object in the collection so that I can submit them in the POST.

      I used to be able to do this in Spring MVC + JSP using the ‘name’ and ‘path’ attributes but I’m having trouble identifying how to do this with SpringBoot+Thymeleaf.

      Any suggestion or ideas?

      thanks,
      mark

      Reply

    Leave a Reply

    Your email address will not be published. Required fields are marked *

    This site uses Akismet to reduce spam. Learn how your comment data is processed.