This site uses cookies to enhance your browsing experience and deliver personalized content. By continuing to use this site, you consent to our use of cookies. COOKIE POLICY COOKIE POLICY
Hey guys, I’m back again with a few more tips to help you navigate the waters of Spring Thymeleaf. Part one of this series can be found here.
In this article, we’re going to go over a few intermediate pieces of Thymeleaf’s functionality.
Thymeleaf Standard Expressions
There are several helper objects available to use in templates. They are:
#dates: utility methods for util.Date objects: formatting, component extraction, etc.
#calendars: analogous to #dates, but for util.Calendar objects
#numbers: utility methods for formatting numeric objects
#strings: utility methods for String objects: contains, startsWith, prepending/appending, etc.
#objects: utility methods for objects in general
#bools: utility methods for Boolean evaluation
#arrays: utility methods for arrays
#lists: utility methods for lists
#sets: utility methods for sets
#maps: utility methods for maps
#aggregates: utility methods for creating aggregates on arrays or collections
#messages: utility methods for obtaining externalized messages inside variables expressions, in the same way as they would be obtained using #{…} syntax
#ids: utility methods for dealing with id attributes that might be repeated (for example, as a result of an iteration)
Import Temporals Expressions To Handle Java 8 Time
If you’re using Java 8’s newer time classes, you will want to include an extra standard template library in your maven file. It contains the #temporals expression set for handling classes like LocalDate and LocalDateTime.
Using th:inline and a little notation, you can inject anything accessible to Thymeleaf into your JavaScript. We usually use this to create a data object that’s accessible on the global scope for referencing your data objects on page load without an ajax call. I use a namespace with a simple getter and setter running on Lodash to add a little insulation around the global objects.
Using our people example from part 1:
Our JavaScript that runs the getter and setter would look like this:
And Usage of that function would look like this:
Reference Static Classes
You can reference static classes directly in your templates (or inline scripts!) without putting them on the model by calling the full package name. The example below uses this syntax to access an Enum for a comparison operation.
That’s all for today. In the last part of this series, we will cover a few advanced operations including fragments, projection and selection. See you next time!
Designing For Play and Friction in a Fast-Paced World
At UDig, play is an integral part of our philosophy. “Having fun” is embedded in our culture, and we always find opportunities to use play to encourage collaboration, ignite creativity, and make room for bold experimentation to build stronger teams and solve problems ranging from the seemingly simple to the most complex. I always have […]
It felt as though Config 2025 ended as soon as it began, and I believe those of us that attended are all the better for it. By the end of the day, various inspirational and informative talks had been given by thought leaders and innovators in the product space. Between sessions, we had the opportunity […]
Config 2025 kicked off with a bang on Day 1. Figma’s annual conference brings together designers, developers, and all those involved in the making of a product. The 2-day event has a stacked lineup of accomplished speakers ready to share their insights on the world of product building. At today’s opening keynote, the Figma team, […]
When organizations decide it’s time to modernize their technology infrastructure, choosing the right approach is crucial. Modernization isn’t merely a technical upgrade; it’s a strategic business move that significantly impacts growth, agility, and long-term success. Here’s how your company can effectively begin to select the best modernization strategy tailored to your goals and challenges. In […]
The Bloated SaaS Era: Paying More for Less While Businesses Wait
SaaS was supposed to make business faster, smarter, and more efficient. Instead, it’s become bloated, expensive, and painfully slow to change. The platforms we rely on—Salesforce, Workday, SAP, and others—haven’t truly innovated in years. Yet, they demand massive investments in re-implementation, process re-engineering, and data migration just to keep up. It’s time to ask: Are […]