map 데이터를 출력하여 보자. 컨트롤러에서 데이터를 보낸다. @GetMapping("/th-map") public String thMap(Model model) { Map score = new HashMap(); score.put("userA", 100); score.put("userB", 90); score.put("userC", 50); model.addAttribute("score", score); return "view/th-map"; } th map userA th:text="${score['userA']}" 이렇게 특정값을 바로 받을 수 있고, th:each 를 통해 반복할 수도 있다. 결과 화면