[Spring] Around Advice
1.オブジェクトの作成
<bean id = "target" class="spring.aop.entity.NewlecExam" p:kor="1" p:eng="2"/>
2.副業の設立(advice)
<bean id="logAroundAdvice" class="spring.aop.advice.LogAroundAdvice" />
3.Proxyの作成
<bean id="proxy" class="org.springframework.aop.framework.ProxyFactoryBean">
<!-- name은 setter이며 통상 SetTarget 이런식이지만 set을 빼고 소문자로 바꾼다(규칙이래) -->
<property name="target" ret="target">
<!-- handler 세팅 (interceptorNames)-->
<property name="interceptorNames">
<list>
<value>logAroundAdvice</value>
</list>
</property>
</bean>
4. LogAroundAdvice.java (Interceptor class)
5.Proxyを使用したメイン操作とAOP呼び出し
Reference
この問題について([Spring] Around Advice), 我々は、より多くの情報をここで見つけました https://velog.io/@ujone/Spring-AOP-Spring으로-구현하기テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol