zbb20170216_spring_aop
Posted Daryll
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了zbb20170216_spring_aop相关的知识,希望对你有一定的参考价值。
1、总体结构图
2、class文件
MyLog.java
package com.zbb.aop; import com.sun.xml.internal.bind.v2.schemagen.xmlschema.List; public class MyLog { public void printBefore() { System.out.println("printBefore"); } public void printAfter() { System.out.println("printAfter"); } }
MyPoint.java
package com.zbb.aop; public interface MyPoint { public void save(); }
MyPointImp.java
package com.zbb.aop; public class MyPointImp implements MyPoint{ public void save() { System.out.println("save"); } }
MyTest.java
package com.zbb.aop; import org.springframework.context.support.ClassPathXmlApplicationContext; public class MyTest { public static void main(String[] args) { ClassPathXmlApplicationContext bean = new ClassPathXmlApplicationContext("applicationContext.xml"); MyPoint obj = (MyPoint)bean.getBean("ponit"); obj.save(); } }
3、配置文件
applicationContext.xml
<?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-2.5.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd"> <bean id="myAop" class="com.zbb.aop.MyLog"></bean> <bean id="ponit" class="com.zbb.aop.MyPointImp"></bean> <aop:config> <aop:aspect id="myAspect" ref="myAop"> <aop:pointcut id="businessService" expression="execution(* *.save(..))" /> <aop:before pointcut-ref="businessService" method="printBefore" /> <aop:after pointcut-ref="businessService" method="printAfter" /> </aop:aspect> </aop:config> </beans>
4、知行效果图
以上是关于zbb20170216_spring_aop的主要内容,如果未能解决你的问题,请参考以下文章