- 浏览: 146762 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
di1984HIT:
谢谢,不错。
javadoc生成API 常见问题 -
hzywy:
你的myeclipse是什么版本的 我的8.6为什么不没有xf ...
webSerivce 用XFire自动生成客户端 -
click_guobin:
解。
详解Java Singleton(单例)模式的好处 -
pengting:
敢用钱来衡量我,我直接让她跪啤酒瓶盖....
计算你的女朋友值多少钱 -
argont:
用 window.location = url 可以解决。
IE6 location.href不跳转
Spring AOP
(1)AOP 概述
AOP 的全称为: (Aspect Oriented Programming) ,中文意思为,面向切面 ( 方面 ) 编程。
简单的说: AOP 就是实现横切的工具。
AOP 让我们的设计逻辑更加模块化,我们称之为“关注点”。我们在同一个程序的很多部分重复使用这些关注点。比如,记录日志和控制安全性能是很多程序都会用到的典型的横切。
(2)AOP 的种类
事实上有两种完全不同的 AOP ,静态和动态。
在静态 AOP 中 ,横切逻辑是在编译时加入到程序中去的。如果要修改横切,就必须修改代码重新编译。
在动态 AOP 中 , ( 比如 Spring 中的 AOP) ,横切逻辑是在动行时动态加入程序中的,这样,我们无需重新编译代码就可以修改横切的使用。
这两种 AOP 互相补充,在程序中两者一起使用时功能非常强大。
(3) AOP 中几个比较重要的概念
<1> 切面 (Aspect)
切面,对象操作过程中的截面。这可能是 AOP 中最关键的一个术语。
我们首先来看一个应用开发中常见的切面:用户权限检查。大概只要是完整的应用,都
少不了用户权限检查这个模块,不同身份的用户可以做什么,不可以做什么,均由这个模块
加以判定。而这个模块调用的位置通常也比较固定:用户发起请求之后,执行业务逻辑之前。
针对权限检查这一模块进行分离,我们就得到了一个切面:
切面意义何在?
首先根据上例,假设我们实现了一个通用的权限检查模块,那么就可以在这层切面上进
行统一的集中式权限管理。而业务逻辑组件则无需关心权限方面的问题。也就是说,通过切
面,我们可以将系统中各个不同层次上的问题隔离开来,实现统一集约式处理。各切面只需
集中于自己领域内的逻辑实现。
这一方面使得开发逻辑更加清晰,专业化分工更加易于进行;另一方面,由于切面的隔
离,降低了耦合性,我们就可以在不同的应用中将各个切面组合使用,从而使得代码可重用
性大大增强。
<2> 联接点( JoinPoint )
程序运行过程中的某个阶段点。如某个方法调用,或者某个异常被抛出。
<3> 处理逻辑( Advice ,或者叫通知)
在某个连接点所采用的处理逻辑
常用的有三种:
前置通知、后置通知、包围通知 ( 后面会详细讲解 )
<4> 切点( PointCut )
一系列连接点的集合,它指明处理方式( Advice )将在何时被触发。
(4) 理解代理
代理的核心任务就是拦截方法调用,并在需要的时候执行匹配某方法的通知链。通知的管理和调用基本与代理无关,所以这是由 Spring AOP 架构负责的。不过,代理还是需要拦截所有的方法调用,并在必要时将该调用传给 AOP 架构,再由后者调用通知。
< 静态代理示例 >
9. Spring 中常用三种通知
(1) 前置通知
接口: org.springframework.aop.MethodBeforeAdvice
使用前置通知可以在联结点执行前进行自定义的操作。不过, Spring 里只有一种联结点,即方法调用,所以前置通知事实上就是让你能在方法调用前进行一些操作。前置通知可以访问调用的目标方法,也可以对该方法的参数进行操作,不过它不能影响方法调用本身。
示例:
IHello 接口
public interface IHello { public void hello(String name); } |
IHello 接口实现
public class HelloSpeaker implements IHello { public void hello(String name) { System.out.println("Hello, " + name); } } |
IHello 实现代理
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); } } |
Spring 配置文件
<bean id="logBeforeAdvice" class="onlyfun.caterpillar.LogBeforeAdvice"/>
<bean id="helloSpeaker" class="onlyfun.caterpillar.HelloSpeaker"/>
<bean id="helloProxy" class="org.springframework.aop.framework.ProxyFactoryBean"> <property name="proxyInterfaces"> <value>onlyfun.caterpillar.IHello</value> </property> <property name="target"> <ref bean="helloSpeaker"/> </property> <property name="interceptorNames"> <list> <value>logBeforeAdvice</value> </list> </property> </bean> |
测试类
public class SpringAOPDemo { public static void main(String[] args) { ApplicationContext context = new FileSystemXmlApplicationContext( "beans-config.xml"); IHello helloProxy = (IHello) context.getBean("helloProxy"); helloProxy.hello("Justin"); } } |
(2) 后置通知 ( 或返回后通知 )
接口: org.springframework.aop.AfterReturningAdvice
后置通知在联结点处的方法调用已经完成,并且已经返回一个值时运行,后置通知可以访问调用的目标方法,以及该方法的参数和返回值。因为等到通知执行时该方法已经调用,后置通知完全不能影响方法调用本身。
示例:
IHello 接口
public interface IHello { public void hello(String name); } |
IHello 接口实现
public class HelloSpeaker implements IHello { public void hello(String name) { System.out.println("Hello, " + name); } } |
IHello 实现代理
public class LogAfterAdvice implements AfterReturningAdvice { private Logger logger = Logger.getLogger(this.getClass().getName());
public void afterReturning(Object object, Method method, Object[] args, Object target) throws Throwable { logger.log(Level.INFO, "method ends..." + method); } } |
Spring 配置文件
<bean id="logAfterAdvice" class="onlyfun.caterpillar.LogAfterAdvice"/>
<bean id="helloSpeaker" class="onlyfun.caterpillar.HelloSpeaker"/>
<bean id="helloProxy" class="org.springframework.aop.framework.ProxyFactoryBean"> <property name="proxyInterfaces"> <value>onlyfun.caterpillar.IHello</value> </property> <property name="target"> <ref bean="helloSpeaker"/> </property> <property name="interceptorNames"> <list> <value>logAfterAdvice</value> </list> </property> </bean> |
测试类
public class SpringAOPDemo { public static void main(String[] args) { ApplicationContext context = new FileSystemXmlApplicationContext( "beans-config.xml"); IHello helloProxy = (IHello) context.getBean("helloProxy"); helloProxy.hello("Justin"); } } |
(3) 包围通知
接口: org.aopalliance.intercept.MethodInterceptor
Spring 中的包围通知模 AOP 联盟的“方法拦截器”标准。包围通知可以在目标方法之前和之后动行,我们也可以定义在什么时候调用目标方法。如果需要,我们也可以另写自己的逻辑而完全不调用目标方法。
示例:
IHello 接口
public interface IHello { public void hello(String name); } |
IHello 接口实现
public class HelloSpeaker implements IHello { public void hello(String name) { System.out.println("Hello, " + name); } } |
IHello 实现代理
public class LogInterceptor implements MethodInterceptor { private Logger logger = Logger.getLogger(this.getClass().getName());
public Object invoke(MethodInvocation methodInvocation) throws Throwable { logger.log(Level.INFO, "method starts..." + methodInvocation.getMethod());
Object result = null; try { result = methodInvocation.proceed(); } finally { logger.log(Level.INFO, "method ends..." + methodInvocation.getMethod() + "\n"); } return result; } |
Spring 配置文件
<bean id="logInterceptor" class="onlyfun.caterpillar.LogInterceptor"/>
<bean id="helloSpeaker" class="onlyfun.caterpillar.HelloSpeaker"/>
<bean id="helloProxy" class="org.springframework.aop.framework.ProxyFactoryBean"> <property name="proxyInterfaces"> <value>onlyfun.caterpillar.IHello</value> </property> <property name="target"> <ref bean="helloSpeaker"/> </property> <property name="interceptorNames"> <list> <value>logInterceptor</value> </list> </property> </bean> |
测试类
public class SpringAOPDemo { public static void main(String[] args) { ApplicationContext context = new FileSystemXmlApplicationContext( "beans-config.xml"); IHello helloProxy = (IHello) context.getBean("helloProxy"); helloProxy.hello("Justin"); } |
10. 利用 Spring 中的 AOP 做权限管理
AOP 在 Spring 中占有很重要的地位,做了一个例子是利用 AOP 来做一个登陆的身份验证,使用了 AOP 可以在不破坏你的代码的前提下帮你完成验证功能。
选用实现 MethodInterceptor 接口的方法来完成这个功能
代码如下:
接口类的定义:
程序代码
: public
interface ILogin {
|
接口实现类的定义:
程序代码
: import com.dragon.study.ILogin; public class
LoginImpl implements ILogin { |
最重要的拦截器的定义:
程序代码 :
import
org.aopalliance.intercept.MethodInterceptor; public class
LoginInterceptor implements MethodInterceptor { |
ApplicationContext.xml 的定义:
<beans> |
Test 类定义:
package com; import java.io.*; import org.springframework.context.ApplicationContext; import com.dragon.study.ILogin; public class Test { |
发表评论
-
Spring Security 3应用的11个步骤
2010-12-30 10:27 1186Spring Security 11个步骤为应用程序添加安 ... -
spring 定时任务
2010-04-03 20:53 1079好久没写博客了,最近在做一个游戏所以比较忙 因为项目的需要接 ... -
Spring技术、图书、开发、培训资源
2009-12-04 12:09 877Spring英文资源 Spring官方网站 http: ... -
反射实现 AOP 动态代理模式(Spring AOP 的实现 原理)
2009-12-03 18:14 988其实AOP的意思就是面向切面编程. OO注重的是我们解决问题 ... -
Spring 常见的一些异常
2009-12-03 17:25 917希望各位高手们都来给我写写,你们发现了什么异常出了什么问题怎么 ... -
实例化Spring IoC容器的三种方法
2009-12-02 18:00 955实例化Spring IoC容器的三种方法 Resource ... -
Spring 注入的几种方法及构构器参数的解析
2009-12-02 17:55 1441感觉总结的比较乱,希 ... -
Spring IOC(二)
2009-12-02 09:55 721Spring bean 的封装机制 Spri ... -
Spring IOC(一)
2009-12-02 09:37 1091Spring IOC IOC ,全称 (I ... -
Spring简介,历史与发展
2009-12-02 09:33 3844Spring 简介,历史与发展 (1) ...
相关推荐
Spring AOP(Aspect Oriented Programming,面向切面编程)是Spring框架的重要组成部分,它提供了一种在不修改源代码的情况下,对程序进行功能增强的技术。这个"spring aop jar 包"包含了实现这一功能所需的类和接口,...
Spring AOP,全称为Aspect Oriented Programming,是面向切面编程的一种编程范式,它是对传统的面向对象编程(OOP)的一种补充。在OOP中,核心是对象,而在AOP中,核心则是切面。切面是关注点的模块化,即程序中的...
Spring AOP(面向切面编程)是Spring框架的重要组成部分,它提供了一种模块化和声明式的方式来处理系统中的交叉关注点问题,如日志、事务管理、安全性等。本示例将简要介绍如何在Spring应用中实现AOP,通过实际的...
3、对spring aop认识模糊的,不清楚如何实现Java 自定义注解的 4、想看spring aop 注解实现记录系统日志并入库等 二、能学到什么 1、收获可用源码 2、能够清楚的知道如何用spring aop实现自定义注解以及注解的逻辑...
Spring AOP 是一种面向切面编程的技术,它允许我们在不修改源代码的情况下,对应用程序的特定部分(如方法调用)进行增强。在 Spring 中,AOP 的实现主要依赖于代理模式,有两种代理方式:JDK 动态代理和 CGLIB 动态...
Spring AOP(面向切面编程)是Spring框架的核心特性之一,它允许开发者在不修改源代码的情况下,通过插入切面来增强或改变程序的行为。在本教程中,我们将深入探讨Spring AOP的不同使用方法,包括定义切点、通知类型...
Spring AOP,全称Aspect-Oriented Programming(面向切面编程),是Spring框架的一个重要模块,它通过提供声明式的方式来实现面向切面编程,从而简化了应用程序的开发和维护。在Spring AOP中,我们无需深入到每个...
现在,我们回到主题——"springaop依赖的jar包"。在Spring 2.5.6版本中,使用Spring AOP通常需要以下核心jar包: - `spring-aop.jar`:这是Spring AOP的核心库,包含了AOP相关的类和接口。 - `spring-beans.jar`:...
Spring AOP 和 Spring IOC 是 Spring 框架的两个核心组件,它们对于任何基于 Java 的企业级应用开发都至关重要。Spring AOP(面向切面编程)允许开发者在不修改源代码的情况下,通过“切面”来插入新的行为或增强已...
面向切面编程(AOP)是一种编程范式,旨在将横切关注点(如日志、安全等)与业务逻辑分离,从而提高模块化。...利用Java反射机制和Spring AOP框架,开发者可以方便地实现AOP,从而提升代码的模块化和可维护性。
**Spring AOP 实现机制详解** Spring AOP(面向切面编程)是Spring框架的核心特性之一,它允许程序员在不修改源代码的情况下,通过“切面”来插入额外的业务逻辑,如日志、事务管理等。AOP的引入极大地提高了代码的...
Spring AOP(面向切面编程)是Spring框架的重要组成部分,它允许程序员在不修改源代码的情况下,通过在运行时插入额外的行为(如日志记录、性能监控等)来增强对象的功能。动态代理则是Spring AOP实现的核心技术之一...
### Spring AOP面向方面编程原理:AOP概念详解 #### 一、引言 随着软件系统的日益复杂,传统的面向对象编程(OOP)逐渐暴露出难以应对某些横切关注点(cross-cutting concerns)的问题。为了解决这一挑战,面向方面编程...
在讨论Spring AOP(面向切面编程)时,首先需要理解几个核心概念。Spring AOP 是Spring框架提供的一个功能模块,它允许开发者将横切关注点(cross-cutting concerns)从业务逻辑中解耦出来,通过在方法调用前后进行...
### Spring AOP 实现流程日志跟踪 #### 一、背景与目的 在现代软件开发过程中,为了确保系统的稳定性和可维护性,通常会引入非功能性的需求来增强应用程序的功能,比如日志记录、安全控制等。这些需求往往不是业务...
Spring AOP(面向切面编程)是Spring框架的重要组成部分,它提供了一种模块化和声明式的方式来处理系统中的交叉关注点,如日志、事务管理等。在Java应用中,AOP通过代理模式实现了切面编程,使得我们可以将业务逻辑...
### Spring AOP 入门详解 #### 一、Spring AOP 概述 Spring AOP(Aspect Oriented Programming,面向切面编程)是Spring框架的一个关键特性,它为开发者提供了在运行时动态添加代码(即横切关注点或切面)到已有...
Spring源码最难问题:当Spring AOP遇上循环依赖 Spring源码中最难的问题之一是循环依赖问题,当Spring AOP遇上循环依赖时,该如何解决? Spring通过三级缓存机制解决循环依赖的问题。 在Spring中,bean的实例化...
Spring AOP,即Spring的面向切面编程模块,是Spring框架的重要组成部分,它允许开发者在不修改源代码的情况下,对程序进行横切关注点的处理,如日志、事务管理等。实现这一功能,主要依赖于三个核心的jar包:aop...
在`springAop1`这个压缩包中,可能包含了一个简单的应用示例,展示了如何定义一个切面类,以及如何在该类中定义通知方法。例如,我们可能会看到一个名为`LoggingAspect`的类,其中包含了`@Before`注解的方法,用于在...