标签:stat factor win ring load 自己的 init system expr
public interface UserService { public void add(); public void update(int a); public void delete(); public void search(); }
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd"> <bean id="userService" class="com.spring.service.impl.UserServiceImpl"/> <!-- 这个切面也要配置成bean--> <bean id="log" class="com.spring.advice.Log"/> <aop:config> <!--切入点,需要告诉方法在什么去执行 expression="execution(* com.spring.service.impl.*.*(..))" 第一个* 表示所有的返回值,然后就是包名 第二个*表示所有的类对象 第三个*表示类对象所有的方法 第四个*表示所有方法下面的带参数的方法或者是不带参数的方法 --> <aop:pointcut expression="execution(* com.spring.service.impl.*.*(..))" id="pointcut"/> <!-- 在所有的方法中都切入前置通知--> <aop:advisor advice-ref="log" pointcut-ref="pointcut"/> </aop:config> </beans>
三月 12, 2017 2:22:44 下午 org.springframework.context.support.AbstractApplicationContext prepareRefresh 信息: Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@439f5b3d: startup date [Sun Mar 12 14:22:44 GMT+08:00 2017]; root of context hierarchy 三月 12, 2017 2:22:44 下午 org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions 信息: Loading XML bean definitions from class path resource [beans.xml] com.spring.service.impl.UserServiceImpl的update方法被执行 修改用户 com.spring.service.impl.UserServiceImpl的add方法被执行 增加用户 故前置通知可以在spring当中被执行,接下可以完善通知;
public class AfterLog implements AfterReturningAdvice{
/**
* 目标方法执行后执行的通知
* returnValue--返回值
* method 被调用的方法对象
* args 被调用的方法对象的参数
* target 被调用的方法对象的目标对象
* */
@Override
public void afterReturning(Object returnValue, Method method,
Object[] args, Object target) throws Throwable {
System.out.println(target.getClass().getName()+"的"+method.getName()+"被成功执行,返回值是:"+returnValue);
}
}
import java.lang.reflect.Method; import org.springframework.aop.ThrowsAdvice; public class ExceptionLog implements ThrowsAdvice { public void afterThrowing(Method method,Exception ex) throws Throwable { } }
<!-- 这个切面也要配置成bean--> <bean id="log" class="com.spring.advice.Log"/> <bean id="afterLog" class="com.spring.advice.AfterLog"></bean> <aop:config> <!--切入点,需要告诉方法在什么去执行 expression="execution(* com.spring.service.impl.*.*(..))" 第一个* 表示所有的返回值,然后就是包名 第二个*表示所有的类对象 第三个*表示类对象所有的方法 第四个*表示所有方法下面的带参数的方法或者是不带参数的方法 --> <aop:pointcut expression="execution(* com.spring.service.impl.*.*(..))" id="pointcut"/> <!-- 在所有的方法中都切入前置通知--> <aop:advisor advice-ref="log" pointcut-ref="pointcut"/> <aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/> </aop:config>
三月 12, 2017 2:28:19 下午 org.springframework.context.support.AbstractApplicationContext prepareRefresh
信息: Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@439f5b3d: startup date [Sun Mar 12 14:28:19 GMT+08:00 2017]; root of context hierarchy
三月 12, 2017 2:28:19 下午 org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
信息: Loading XML bean definitions from class path resource [beans.xml]
com.spring.service.impl.UserServiceImpl的update方法被执行
修改用户
com.spring.service.impl.UserServiceImpl的update被成功执行,返回值是:null
com.spring.service.impl.UserServiceImpl的add方法被执行
增加用户
com.spring.service.impl.UserServiceImpl的add被成功执行,返回值是:null
Spring的AOP就是将公共的业务(如日志,安全等)和业务类结合。当执行业务的时候将会把公共业务加进来。实现公共业务的重复利用。我们自己的业务就会变得更加的纯粹,我们就可以关注我们的自己的业务,本质就是动态代理。
标签:stat factor win ring load 自己的 init system expr
原文地址:https://www.cnblogs.com/xiaozhang666/p/11626572.html