[Spring] After Returning Advice
객체생성
<bean id = "target" class="spring.aop.entity.NewlecExam" p:kor="1" p:eng="2/>
부작업(advice) 세팅
<bean id="logAfterReturningAdvice" class="spring.aop.advice.LogAfterReturningAdvice" />
Proxy 생성 : 리스트에 추가
<bean id="proxy" class="org.springframework.aop.framework.ProxyFactoryBean">
<property name="target" ret="target"/>
<!-- handler 세팅 (interceptorNames)-->
<property name="interceptorNames">
<list>
<value>logAroundAdvice</value>
<value>logBeforeAdvice</value>
<value>logAfterReturningAdvice</value>
</list>
</property>
</bean>
LogAfterReturningAdvice.class
Implements : AfterReturningAdvice
Object returnValue를 이용하여 리턴값을 사용할 수 있음. (After이기 때문)
Author And Source
이 문제에 관하여([Spring] After Returning Advice), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@ujone/Spring-After-Returning-Advice저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)