spring 알림 (advice)

3829 단어 DAOspringAOPbeanxml
spring 의 알림 (advice) 은 방법 알림 과 이상 알림 으로 나 뉜 다.방법 알림 은 전 (MethodBeforeAdvice), 호출 중 (MethodInterceptor), 호출 후 (After Returning Advice) 세 가지 방법 이 있 습 니 다. 이 세 가 지 는 인 터 페 이 스 를 실현 하면 됩 니 다.그러나 이상 알림 은 ThrowsAdvice 를 실현 한 후에 코드 를 수 동 으로 추가 해 야 한 다 는 점 을 모 르 겠 습 니 다. 어떤 고수 가 설명 할 수 있 습 니까?다음은 나의 실현 코드 이다.
 
알림 코드:
package login.aop;

import java.lang.reflect.AccessibleObject;
import java.lang.reflect.Method;

import org.aopalliance.intercept.MethodInterceptor;
import org.aopalliance.intercept.MethodInvocation;
import org.springframework.aop.AfterReturningAdvice;
import org.springframework.aop.MethodBeforeAdvice;
import org.springframework.aop.ThrowsAdvice;

public class AdviceTest implements MethodBeforeAdvice,AfterReturningAdvice,MethodInterceptor,ThrowsAdvice {

	//     
	public void before(Method arg0, Object[] arg1, Object arg2)
			throws Throwable {
		// TODO Auto-generated method stub
		System.out.println("before");
	}

	//     
	
	public void afterReturning(Object arg0, Method arg1, Object[] arg2,
			Object arg3) throws Throwable {
		// TODO Auto-generated method stub
		System.out.println("after");
		
	}
	
	//       
	public Object invoke(MethodInvocation arg0) throws Throwable {
		// TODO Auto-generated method stub
		System.out.println(arg0.getMethod().getName()+" invoking.....");
		
		return arg0.proceed();
	}
	
	//    
	public void afterThrowing(NullPointerException exception){
		System.out.println("exception.....");
		
	}
	public void afterThrowing(Method method,Object[] objects,Object target,Throwable throwable){
		
	}


}

 beans. xml 파일 설정:
<!--        -->
	<bean id="userServiceTarget" class="login.service.impl.UserServiceImpl">
		<property name="dao" ref="userDao"></property>		
	</bean>
	<!--      -->
	<bean id="userAdvice" class="login.aop.AdviceTest">
	</bean>
	<!--        ,    spring     bean-->
	<bean id="userService" class="org.springframework.aop.framework.ProxyFactoryBean">
		<property name="targetName" >
			<value>userServiceTarget</value>
		</property>
		<property name="proxyInterfaces">
			<value>login.service.UserService</value>
		</property>
		<property name="interceptorNames">
			<list>
				<value>userAdvice</value>
			</list>
		</property>
	</bean>

 테스트 코드:
package login.test;

import login.service.UserService;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class MyAdvice {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
		UserService service = (UserService) context.getBean("userService");
		service.list();
		service.login("ligson", "admin");
		service.login("ligson", null);
	}

}

 설명:
userDao 에서 사용자 로그 인 을 정의 합 니 다. 사용자 이름 이나 비밀번호 가 비어 있 으 면 빈 포인터 이상 을 던 집 니 다.이 이상 은 이상 알림 의 after Throwing 방법 으로 매개 변수 가 이상 하 게 일치 해 야 합 니 다.

좋은 웹페이지 즐겨찾기