회원 관리 예제 - 웹 MVC 개발 듣고 있는 강의 - 김영한의 Spring 입문편 1. 회원 웹 기능 - 홈 화면 추가 홈 컨트롤러 추가 package hello.hello_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;import org.springframework.web.bind.annotation.ResponseBody;@Controllerpublic c..