Interacting with a Thymeleaf template

Having put Thymeleaf on the classpath, an entire reactive view resolver has already been configured for us. The last step in putting together the web layer for our social media platform is to create the Thymeleaf template itself. We can do that by putting the following content into index.html underneath /src/main/resources/templates:

 <!DOCTYPE html> <html xmlns:th="http://www.thymeleaf.org"> <head> <meta charset="UTF-8" /> <title>Learning Spring Boot: Spring-a-Gram</title> <link rel="stylesheet" href="/main.css" /> </head> <body> <h1>Learning Spring Boot - 2nd Edition</h1> <div> <table> <thead> <tr> <th>Id</th><th>Name</th><th>Image</th><th></th> </tr> </thead> <tbody> <tr th:each="image : ${images}"> ...

Get Developing Java Applications with Spring and Spring Boot now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.