![](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FdvECOs%2FbtssIqjzGdc%2FegV46AHKg9TOdRkPlquRv0%2Fimg.png)
AOP_부가기능의 실행시점(advice) - @Before
·
Framework/SPRING FRAMEWORK
1. AOP 의존성 등록 org.aspectj aspectjweaver 1.9.4 2. 타겟 객체 생성 (핵심 기능 구현한 빈) 3. aspect 객체 생성 (부가 기능 구현한 빈) 가. @Aspect 어노테이션 지정 나. pointcut 지정: 어떤 핵심기능의 메서드인지 알려주는 기능 https://docs.spring.io/spring-framework/docs/5.2.25.RELEASE/spring-framework-reference/core.html#aop-pointcuts-examples Core Technologies In the preceding scenario, using @Autowired works well and provides the desired modularity, but det..