[코드로 배우는 스프링 부트] 3-2. 회원 관리 예제 (서비스, DI)
목차 0. 환경 m1 macbook IntelliJ IDEA(m1) - 202102 java 11(AdoptOpenJDK-11.0.11) 자바를 설치하지 않았다면 아래의 링크를 활용해주세요. https://veneas.tistory.com/entry/WindowsJAVAJDK-설치 https://veneas.tistory.com/entry/Linux-CentOS7-원하는-특정-버전-Javajdk-설치하기-wget 1. 회원 서비스 개발 package hello.hellospring.service; import hello.hellospring.domain.Member; import hello.hellospring.repository.MemberRepository; import hello.hellosprin..