spring的aop示例代码

package step6;

public interface IHello {
 public void hello(String name);
 public void morning(String name);
}

package step6;

public class HelloSpeaker implements IHello {

 public void hello(String name) {
  try {
   Thread.sleep(5000);
  } catch (InterruptedException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }
  System.out.println("Hello, " + name);
 }

 public void morning(String name) {
  try {
   Thread.sleep(5000);
  } catch (InterruptedException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }
  System.out.println("Morning, " + name);
 }

}

package step6;

import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.lang.reflect.*;

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

public class LogBeforeAdvice implements MethodBeforeAdvice {
 private Logger logger = Logger.getLogger(this.getClass().getName());

 public void before(Method method, Object[] args, Object target)
   throws Throwable {
  logger.log(Level.INFO, "method starts..." + method);
 }
}

package step6;

import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.lang.reflect.*;

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

public class LogAfterAdvice implements AfterReturningAdvice {
 private Logger logger = Logger.getLogger(this.getClass().getName());

 public void afterReturning(Object returnValue, Method method,
   Object[] args, Object target) throws Throwable {
  logger.log(Level.INFO, "method ends..." + method);
 }
}

package step6;

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

import sun.management.FileSystem;

public class Test {
 public static void main(String[] args) {
  ApplicationContext context = new FileSystemXmlApplicationContext(
    "/src/step6/bean.xml");
  IHello helloProxy = (IHello) context.getBean("helloProxy");
  helloProxy.hello("Justin");
  helloProxy.morning("monor");
 }
}
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">

<beans>
 <bean id="helloProxy"
  class="org.springframework.aop.framework.ProxyFactoryBean">
  <property name="proxyInterfaces">
   <value>step6.IHello</value>
  </property>
  <property name="target">
   <ref bean="helloSpeaker" />
  </property>
  <property name="interceptorNames">
   <list>
    <value>logBeforeAdvisor</value>
    <value>logAfterAdvisor</value>
   </list>
  </property>
 </bean>
 <bean id="logBeforeAdvisor"
  class="org.springframework.aop.support.RegexpMethodPointcutAdvisor">
  <property name="advice">
   <ref bean="logBeforeAdvice" />
  </property>
  <property name="patterns">
   <value>step6/.IHello/.morning</value>
  </property>
 </bean>
 <bean id="logAfterAdvisor"
  class="org.springframework.aop.support.RegexpMethodPointcutAdvisor">
  <property name="advice">
   <ref bean="logAfterAdvice" />
  </property>
  <property name="patterns">
   <value>step6/.IHello/.hello</value>
  </property>
 </bean>
 <bean id="helloSpeaker" class="step6.HelloSpeaker"></bean>
 <bean id="logAfterAdvice" class="step6.LogAfterAdvice"></bean>
 <bean id="logBeforeAdvice" class="step6.LogBeforeAdvice"></bean>

</beans>
 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值