인천 일보 아카데미 44일차 -1- 실습


인천 일보 아카데미 44일차 -1- 실습

1. 주요 동작 1. 모든 요청은 MainController에서 처리함 2. 프로젝트 시작하면 index.jsp 출력 import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; @Controller public class MainController { @GetMapping("/") public String index(){ return "index"; } } 2. index.jsp 1. monday1.jsp를 출력하기 위한 링크 있음(요청주소: /monday1) 2. monday2.jsp를 출력하기 위한 버튼 있음(요청주소: /monday2) 3. monday3.jsp를 ..


원문링크 : 인천 일보 아카데미 44일차 -1- 실습