Spring41 국비 지원 개발자 과정_Day58 package com.example.demo.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; // 서블릿에선 @WevServlet -> Controller + RequestMapping // 여기선 각각 나누어서 표시함 @Controller @RequestMapping("/home/*") public class HomeController { // 테스트 URL 경로: http://localhost:8000/home/index @.. 2023. 2. 20. 이전 1 ··· 6 7 8 9 다음