spring
aop:pointcut 여러개 지정
질주하는구
2021. 6. 3. 15:33
pointcut을 여러개 지정 하기 위해서는 아래와 같이 작성 하면 됩니다.
<aop:pointcut id="requiredTx" expression="execution(* egovframework..impl.*Impl.*Transaction(..)) || execution(* egovframework.cmmn.service.impl.*Impl.*Transaction(..))"/>
'||'(or)나 '&&'(and), '!'(not) 을 사용할 수 있습니다.
반응형