spring op 미 실행 문제 기록

1642 단어 springAOP미 발효
클래스 com. ipharmacare. plat. service. data. docOrgService 에서 다음 과 같은 두 가지 방법 을 정의 합 니 다.
	public int operate(Integer docId, String[] allOrgs, DocManageVo doc) {
	
		int r = 0;
		...
	
		return r;
	
	}
	
	public int operate(DocManageVo doc, String[] allOrgs, String productId, String entCode) {

		int r = 0;

		...
		
		r += operate(doc.getId(), allOrgs, doc);

		return r;
	}

spring op 설정 은 다음 과 같 습 니 다:
		<aop:aspect id="aspect.deliveryChangeLog.aop" ref="deliveryChangeLogAop">
			<aop:pointcut
				expression="execution(int com.ipharmacare.plat.service.data.DocOrgService.operate(Integer,..))"
				id="pointcut.deliveryChangeLog" />
			<aop:around method="around" pointcut-ref="pointcut.deliveryChangeLog" />
			<aop:after method="after" pointcut-ref="pointcut.deliveryChangeLog" />
		</aop:aspect>

DocManageAction 에서 방법 DocOrgService. operate (DocManageVo doc, String [] allOrgs, String productId, String entCode) 를 호출 하 였 습 니 다.
AOP 의 논리 가 실행 되 지 않 은 것 을 발견 한 것 은 좀 이상 하 다!?
본의 아니 게 Doc ManageAction 에서 방법 DocOrg Service. operate (Integer docId, String [] allOrgs, Doc ManageVo doc) 를 호출 했 습 니 다.
AOP 에서 논리 가 성공 적 으로 실행 되 었 습 니 다!
DocOrgService 이 클래스 에서 operate (Integer docId, String [] allOrgs, DocManageVo doc) 방법 을 어떻게 사용 하 는 지 모 르 겠 습 니 다. AOP 논 리 는 왜 효력 이 발생 하지 않 습 니까? 다른 클래스 에서 이 방법 을 사용 해 야 AOP 논리 가 효력 이 발생 합 니 다!?

좋은 웹페이지 즐겨찾기