- 浏览: 37950 次
- 性别:
- 来自: 大连
最新评论
-
liwei113114:
servlet后面的BARCODE_TYPE参数传错了,参数名 ...
(转)用java生成条形码,barcode4j得应用 -
Smart_chw:
<div class="quote_title ...
(转)Struts2调用流程 -
lishijia:
看起来确实费劲。。。
(转)Struts2调用流程 -
JArcher:
建议图文结合。。。
(转)Struts2调用流程 -
free_zk:
实在是没有办法看了
(转)Struts2调用流程
经过这段日子的学习和使用Spring,慢慢地体会到Spring的优妙之处,正在深入地吸收Spring的精华,
呵呵。现在写的这个只是个简单AOP例子,包括前置通知,后置通知,环绕通知,和目标对象。写这个例子的主要目标只是想让想学AOP的能更快地入门,了解
一下如何去配置AOP里面的东东。
目标对象的接口:IStudent.java
1
/**
2 *
3 */
4 package com.dragon.study;
5
6 /**
7 * @author dragon
8 *
9 */
10 public interface IStudent {
11
12 public void addStudent(String name);
13 }
14
2 *
3 */
4 package com.dragon.study;
5
6 /**
7 * @author dragon
8 *
9 */
10 public interface IStudent {
11
12 public void addStudent(String name);
13 }
14
目标类:StudentImpl.java
1
/**
2 *
3 */
4 package com.dragon.study.Impl;
5
6 import com.dragon.study.IStudent;
7
8 /**
9 * @author dragon
10 *
11 */
12 public class StudentImpl implements IStudent {
13
14 public void addStudent(String name) {
15 System.out.println( " 欢迎 " + name + " 你加入Spring家庭! " );
16 }
17 }
18
2 *
3 */
4 package com.dragon.study.Impl;
5
6 import com.dragon.study.IStudent;
7
8 /**
9 * @author dragon
10 *
11 */
12 public class StudentImpl implements IStudent {
13
14 public void addStudent(String name) {
15 System.out.println( " 欢迎 " + name + " 你加入Spring家庭! " );
16 }
17 }
18
前置通知:BeforeAdvice.java
1
/**
2 *
3 */
4 package com.dragon.Advice;
5
6 import java.lang.reflect.Method;
7
8 import org.springframework.aop.MethodBeforeAdvice;
9
10 /**
11 * @author dragon
12 *
13 */
14 public class BeforeAdvice implements MethodBeforeAdvice {
15
16 public void before(Method method,Object[] args, Object target)
17 throws Throwable {
18
19 System.out.println( " 这是BeforeAdvice类的before方法. " );
20
21 }
22 }
23
2 *
3 */
4 package com.dragon.Advice;
5
6 import java.lang.reflect.Method;
7
8 import org.springframework.aop.MethodBeforeAdvice;
9
10 /**
11 * @author dragon
12 *
13 */
14 public class BeforeAdvice implements MethodBeforeAdvice {
15
16 public void before(Method method,Object[] args, Object target)
17 throws Throwable {
18
19 System.out.println( " 这是BeforeAdvice类的before方法. " );
20
21 }
22 }
23
后置通知:AfterAdvice.java
1
/**
2 *
3 */
4 package com.dragon.Advice;
5
6 import java.lang.reflect.Method;
7
8 import org.springframework.aop.AfterReturningAdvice;
9
10 /**
11 * @author dragon
12 *
13 */
14 public class AfterAdvice implements AfterReturningAdvice {
15
16 public void afterReturning(Object returnValue ,Method method,
17 Object[] args,Object target) throws Throwable {
18 System.out.println( " 这是AfterAdvice类的afterReturning方法. " );
19 }
20
21
22 }
23
2 *
3 */
4 package com.dragon.Advice;
5
6 import java.lang.reflect.Method;
7
8 import org.springframework.aop.AfterReturningAdvice;
9
10 /**
11 * @author dragon
12 *
13 */
14 public class AfterAdvice implements AfterReturningAdvice {
15
16 public void afterReturning(Object returnValue ,Method method,
17 Object[] args,Object target) throws Throwable {
18 System.out.println( " 这是AfterAdvice类的afterReturning方法. " );
19 }
20
21
22 }
23
环绕通知:CompareInterceptor.java
1
/**
2 *
3 */
4 package com.dragon.Advice;
5
6 import org.aopalliance.intercept.MethodInterceptor;
7 import org.aopalliance.intercept.MethodInvocation;
8
9
10 /**
11 * @author dragon
12 *
13 */
14 public class CompareInterceptor implements MethodInterceptor {
15
16 public Object invoke(MethodInvocation invocation) throws Throwable {
17 Object result = null ;
18 String stu_name = invocation.getArguments()[ 0 ].toString();
19 if ( stu_name.equals( " dragon " )) {
20 // 如果学生是dragon时,执行目标方法,
21 result = invocation.proceed();
22
23 } else {
24 System.out.println( " 此学生是 " + stu_name + " 而不是dragon,不批准其加入. " );
25 }
26
27 return result;
28 }
29 }
30
2 *
3 */
4 package com.dragon.Advice;
5
6 import org.aopalliance.intercept.MethodInterceptor;
7 import org.aopalliance.intercept.MethodInvocation;
8
9
10 /**
11 * @author dragon
12 *
13 */
14 public class CompareInterceptor implements MethodInterceptor {
15
16 public Object invoke(MethodInvocation invocation) throws Throwable {
17 Object result = null ;
18 String stu_name = invocation.getArguments()[ 0 ].toString();
19 if ( stu_name.equals( " dragon " )) {
20 // 如果学生是dragon时,执行目标方法,
21 result = invocation.proceed();
22
23 } else {
24 System.out.println( " 此学生是 " + stu_name + " 而不是dragon,不批准其加入. " );
25 }
26
27 return result;
28 }
29 }
30
配置文件applicationContext.xml
1
<?
xml version="1.0" encoding="UTF-8"
?>
2 <! DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd" >
3
4 < beans >
5
6 < bean id ="beforeAdvice" class ="com.dragon.Advice.BeforeAdvice" ></ bean >
7 < bean id ="afterAdvice" class ="com.dragon.Advice.AfterAdvice" ></ bean >
8 < bean id ="compareInterceptor" class ="com.dragon.Advice.CompareInterceptor" ></ bean >
9 < bean id ="studenttarget" class ="com.dragon.study.Impl.StudentImpl" ></ bean >
10
11 < bean id ="student" class ="org.springframework.aop.framework.ProxyFactoryBean" >
12 < property name ="proxyInterfaces" >
13 < value > com.dragon.study.IStudent </ value >
14 </ property >
15 < property name ="interceptorNames" >
16 < list >
17 < value > beforeAdvice </ value >
18 < value > afterAdvice </ value >
19 < value > compareInterceptor </ value >
20 </ list >
21 </ property >
22 < property name ="target" >
23 < ref bean ="studenttarget" />
24 </ property >
25
26 </ bean >
27
28
29
30
31 </ beans >
2 <! DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd" >
3
4 < beans >
5
6 < bean id ="beforeAdvice" class ="com.dragon.Advice.BeforeAdvice" ></ bean >
7 < bean id ="afterAdvice" class ="com.dragon.Advice.AfterAdvice" ></ bean >
8 < bean id ="compareInterceptor" class ="com.dragon.Advice.CompareInterceptor" ></ bean >
9 < bean id ="studenttarget" class ="com.dragon.study.Impl.StudentImpl" ></ bean >
10
11 < bean id ="student" class ="org.springframework.aop.framework.ProxyFactoryBean" >
12 < property name ="proxyInterfaces" >
13 < value > com.dragon.study.IStudent </ value >
14 </ property >
15 < property name ="interceptorNames" >
16 < list >
17 < value > beforeAdvice </ value >
18 < value > afterAdvice </ value >
19 < value > compareInterceptor </ value >
20 </ list >
21 </ property >
22 < property name ="target" >
23 < ref bean ="studenttarget" />
24 </ property >
25
26 </ bean >
27
28
29
30
31 </ beans >
现在开始写测试类,Test.java
1
/**
2 *
3 */
4 package com;
5
6 import org.springframework.context.ApplicationContext;
7 import org.springframework.context.support.FileSystemXmlApplicationContext;
8
9 import com.dragon.study.IStudent;
10
11 /**
12 * @author dragon
13 *
14 */
15 public class Test {
16
17 /**
18 * @param args
19 */
20 public static void main(String[] args) {
21 // TODO Auto-generated method stub
22 ApplicationContext ctx =
23 new FileSystemXmlApplicationContext( " /com/dragon/applicationContext.xml " );
24
25 IStudent person = (IStudent)ctx.getBean( " student " );
26 person.addStudent( " dragon " );
27
28 // person.addStudent("javadragon");
29 }
30
31 }
32
2 *
3 */
4 package com;
5
6 import org.springframework.context.ApplicationContext;
7 import org.springframework.context.support.FileSystemXmlApplicationContext;
8
9 import com.dragon.study.IStudent;
10
11 /**
12 * @author dragon
13 *
14 */
15 public class Test {
16
17 /**
18 * @param args
19 */
20 public static void main(String[] args) {
21 // TODO Auto-generated method stub
22 ApplicationContext ctx =
23 new FileSystemXmlApplicationContext( " /com/dragon/applicationContext.xml " );
24
25 IStudent person = (IStudent)ctx.getBean( " student " );
26 person.addStudent( " dragon " );
27
28 // person.addStudent("javadragon");
29 }
30
31 }
32
发表评论
-
POI读取EXCEL进行sheet复制
2011-08-10 12:10 2741/****************************** ... -
POI设置EXCEL单元格格式为文本、小数、百分比、货币、日期、科学计数法和中文大写
2011-04-28 15:55 1307再读本篇文章之前,请先看我的前一篇文章,前一篇文章中有重点 ... -
(转)ArrayList实现
2011-02-19 08:34 789ArrayList是List接口的一个可变长数组实现。实现 ... -
(转)iReport与JasperReport简介
2011-01-31 08:45 1321一、iReport与JasperReport简介 ... -
(转)用java生成条形码,barcode4j得应用
2011-01-26 09:54 2784最近一个oa系统用到了 ... -
(转)条形码barcode4j的使用
2011-01-26 09:51 929 -
如何成功制作可执行的Jar包
2010-12-19 12:23 783今天试了一下制作可执行的Jar文件的方法。 具体如下: 首 ... -
bat运行jar文件
2010-12-19 09:07 1597set JAVA_HOME=D:\Users\Java\jdk ... -
(转)JAR文件包及jar命令详解
2010-12-19 07:39 826常常在网上看到 ... -
(转)在java程序中如何知道数据库表的主键
2010-12-11 07:59 1431有同事问到在程序中怎样知道数据库表中那 ... -
(转)浅谈JDBC事务和JTA (XA)事务
2010-11-10 09:46 1124事务简介 一般情 ... -
Java, 面试题, Spring
2010-11-05 14:36 1312Java, 面试题, Spring 113. 什么是aop,a ... -
JSP 抛出一些URI异常的解决方法
2010-05-31 10:24 1299本文来自CSDN博客:http://blog.csdn.net ... -
(转)ECSide入门(资料整理)
2010-03-24 14:14 831ECSide是有一个基于jsp tag的开源列表组件.简 ... -
(转)Struts2调用流程
2010-01-07 14:11 15041. 当Servlet容器接收到一个请求后,将请求交给你在we ... -
Struts1和Struts2的区别和对比
2009-08-07 20:46 6961.Action 类: • Struts1要求Action类 ...
相关推荐
现在,我们来看如何创建一个简单的Spring AOP例子: 1. **定义切面(Aspect)**:切面是包含通知(Advice)和切入点(Pointcut)的类。通知定义了要执行的逻辑,切入点定义了何时执行。例如,我们可以创建一个名为`...
在Spring AOP的例子中,我们可能会创建一个`@RunWith(SpringJUnit4ClassRunner.class)`标记的测试类,以利用Spring的测试支持。在测试方法中,可以注入需要的bean,然后调用方法来触发AOP代理。这样,通知将在适当的...
在"spring aop例子"中,我们可以看到`src`目录,这个通常包含Java源代码,其中可能包含了切面类、通知方法以及使用了切面的业务逻辑类。`extjstest`可能是测试目录,用于验证AOP配置和功能是否正确工作。`QQ五笔截图...
这个简单例子将帮助我们理解AOP的基本概念和如何在Spring框架中实现它。 首先,我们要知道AOP的核心概念:切面、通知、连接点、切点、目标对象和代理。切面是包含横切关注点(如日志记录、事务管理等)的模块化组件...
现在,我们来看一个简单的Spring AOP例子: 首先,我们需要定义一个切面,包含一个通知。例如,我们创建一个名为`LoggingAspect`的类,其中有一个`logExecutionTime`方法作为前置通知,记录方法的执行时间: ```...
Spring 2.5 AOP(面向切面编程)...综上所述,Spring 2.5 AOP例子展示了如何利用类扫描和XML配置实现面向切面编程。通过理解这些概念和实践,我们可以更高效地管理和维护我们的应用程序,使其更具可扩展性和可维护性。
在这个"SpringAOP的例子"中,我们将深入探讨如何在Eclipse环境下利用Spring AOP和动态代理来实现这些功能。 首先,让我们理解什么是AOP。AOP是一种编程范式,旨在减少代码的重复性和增强可维护性。在传统的OOP中,...
在`testaop`这个文件夹中,可能包含了一个简单的Spring配置文件(如`applicationContext.xml`),用于定义Bean和AOP配置。在配置文件中,我们需要声明一个切面类,该类包含了我们定义的通知。例如: ```xml <aop:...
在`springAop`目录下,你应该会看到如`LoggingAspect.java`这样的源码文件,它实现了切面逻辑。此外,可能还有一个`Main`类用于启动应用程序并演示AOP如何工作。通过运行这个示例,你可以观察到切面是如何在运行时...
本例子就是一个使用 Spring AOP 注解实现的项目,旨在展示如何在简单的环境中应用这一特性。 1. **AOP 基础概念** - **切面(Aspect)**: 包含一组相关功能的模块,这些功能在多个对象中都可能被用到,比如日志、...
这个"springAOP演示例子"很可能会包含一个简单的Spring项目,展示如何创建和配置切面,定义切入点和通知,并观察其在实际代码中的工作原理。通过深入理解和实践这个例子,你可以更好地掌握Spring AOP的使用,提升你...
Spring AOP,全称为Aspect-Oriented Programming(面向切面编程),是Spring框架的重要组成部分,它为Java应用程序提供了声明式事务管理、日志记录、性能监控等跨切面关注点的解决方案。本教程将深入探讨Spring AOP...
Spring.NET会创建一个实现了这些接口的代理类,当调用接口方法时,代理会先执行预定义的切面(Advice),然后转发调用给实际的目标对象。这种方式简单且高效,但仅限于接口实现。 2. **基于类型(TypeProxy)**:...
下面是一个简单的Spring MVC中AOP的例子,分为配置和实现两部分。 ### 配置 1. 在`spring-common.xml`配置文件中,我们需要引入AOP相关的命名空间,并声明一个`<aop:aspectj-autoproxy>`元素。这会告诉Spring容器...
在这个"SpringAOP例子"中,我们将探讨Spring AOP如何实现以及如何在实际项目中应用。 首先,Spring AOP通过代理模式实现了面向切面编程。它提供了两种类型的代理:JDK动态代理和CGLIB代理。JDK动态代理基于接口,当...
Spring AOP(Aspect Oriented Programming,面向切面编程)是Spring框架的一个重要模块,它扩展了传统的面向对象编程,允许开发者定义“横切关注点”(cross-cutting concerns),如日志、事务管理、性能监控等。...
在`springAop1`这个压缩包中,可能包含了一个简单的应用示例,展示了如何定义一个切面类,以及如何在该类中定义通知方法。例如,我们可能会看到一个名为`LoggingAspect`的类,其中包含了`@Before`注解的方法,用于在...
Spring AOP,即Spring的面向切面编程,是Spring框架中的一个重要组成部分,它提供了一种在不修改原有代码的情况下,对程序进行功能增强的技术。在实际开发中,我们经常使用AOP来处理如日志记录、事务管理、权限校验...
Spring AOP,全称Aspect-Oriented Programming(面向切面编程),是Spring框架的重要组成部分,用于实现横切关注点的模块化。它允许开发者定义“切面”,将那些与业务逻辑无关,却为多个对象共有的行为(如日志、...
Spring AOP 日志管理 实例LoggingThrowsAdvice.java