How to use "map.get(key)" in Thymeleaf - Broadleaf Ecom

Sumit Rathore picture Sumit Rathore · Feb 20, 2015 · Viewed 52.3k times · Source

I have a Hashmap (String, List<Offers>), passed to a Thymeleaf page. I am getting this map on the page and I can access it.

How can I do map.get(key) with Thymeleaf? I just need to fetch the values based on a certain key and then parse and print that value, which I know and have the logic for.

I am running a Broadleaf application and Thymeleaf is the UI engine for it.

Answer

Prabhat picture Prabhat · Feb 20, 2015

You can simply use ${map.get('key')}