Spring #5 MVC와 템플릿 엔진
이번에는 MVC 패턴에 대해서 알아보겠습니다 MVC : Model, View, Controller 로써, 앞 글자를 따와서 MVC라는 단어가 생성이 되었습니다Spring에서는 관심사를 분리하기 위해서 MVC패턴을 사용합니다. 그럼 코드를 직접 짜보겠습니다! package helloo.helloo_spring.controller;import org.springframework.stereotype.Controller;import org.springframework.ui.Model;import org.springframework.web.bind.annotation.GetMapping;import org.springframework.web.bind.annotation.RequestParam;@Controller..
2024.07.16