[✍혼자서 스프링 공부하기] 3일차 - 웹 MVC 개발(회원 관리 예제)

    앞서 구성한 MVC 패턴에 맞게 회원 가입과 조회 기능을 개발하였다. https://github.com/jiholee0/hello-spring GitHub - jiholee0/hello-spring: SPRING 공부 레포지토리 SPRING 공부 레포지토리. Contribute to jiholee0/hello-spring development by creating an account on GitHub. github.com Controller (controller/MemberController.java) package hello.hellospring.controller; import hello.hellospring.domain.Member; import hello.hellospring.service.Mem..