*AOP(Aspect Oriented Programming): 공통 관심 사항(cross-cutting concern)과 핵심 관심 사항(core concern)을 분리하는 것. 모든 메소드의 호출 시간을 측정하고 싶을 때회원 가입 시간, 회원 조회 시간을 측정하고 싶을 때1. 회원 가입, 회원 조회 시간 측정하기(일일이)import com.yoonsung.firstproject.domain.Member;import com.yoonsung.firstproject.repository.MemberRepository;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Service;i..