I have a Map<String, Map<String, String>> and I want to get the value form the second Map.
I'm trying to use <th:block th:with="categorySubMap=${categoryMap.get(warehouse)}"> ,
but it seems categorySubMap become a List not a Map.
How to get the Map in Thymeleaf?
CodePudding user response:
