1) 상황 발생 '각각의 함수의 측정 시간을 알고 싶다' 요청 우리는 여기서 핵심 프로세서와 공통 관심사항 2개로 나눠지게 된다. 함수 측정 + 프로세서 로직으로 아래 예시를 보자. package hello.hellospring.service; import hello.hellospring.domain.Member; import hello.hellospring.repository.MemberRepository; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.transaction.annotation.Transactional; import java.util.List; import java.util..