Thymeleaf에서의 링크처리 Thymeleaf의 링크는 '@{}'를 이용한다. @GetMapping({"/ex2", "/exLink"}) public void exModel(Model model) { List list = IntStream.rangeClosed(1,20).asLongStream(). mapToObj(i->{ SampleDTO dto = SampleDTO.builder() .sno(i) .first("First.."+i) .last("Last.."+i) .regTime(LocalDateTime.now()) .build(); return dto; }).collect(Collectors.toList()); model.addAttribute("list", list); } Colored by ..