
회원 웹 기능 - 홈 화면 추가*홈 컨트롤러package hello.hello_spring.controller;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.GetMapping;@Controllerpublic class HomeController { @GetMapping("/") public String home() { return "home"; }} *회원 등록 폼 컨트롤러package hello.hello_spring.controller;import hello.hello_spring.domain.Member;import hello.hello_..