반응형 Thymeleaf 템플릿 작성1 17. Thymeleaf와 Spring Framework의 통합 - 2 컨트롤러와 Thymeleaf의 연동 Spring Boot 애플리케이션에서 컨트롤러와 Thymeleaf를 연동하여 동적 웹 페이지를 생성하는 방법에 대해 알아보겠습니다. 1. 컨트롤러 작성 먼저, 컨트롤러 클래스를 작성하여 웹 요청을 처리하고 필요한 데이터를 모델에 추가합니다. 예를 들어, 다음과 같은 컨트롤러를 작성할 수 있습니다. import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.GetMapping; @Controller public class MyController { @GetMapping("/hello") pub.. 2024. 2. 24. 이전 1 다음 반응형