MVC패턴 #스프링 MVC
-
MVC 패턴Spring 2021. 12. 22. 09:18
1. 일반적인 MVC패턴 package com.fastcampus.ch2; import java.io.IOException; import java.util.Calendar; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.servlet.ModelAndView; // 년월일을 입력하면 요일을 알려주는 프로그램 @Controller public class YoilTellerMVC { @RequestMapping("/getYoilMVC")..