Spring 自动代理创建器详细介绍及简单实例

所属分类: 网络编程 / JSP编程 阅读数: 1136
收藏 0 赞 0 分享

Spring 自动代理创建器

前言:

在经典的spring Aop中,可以手工为目标Bean创建代理Bean,配置文件必须为每一个需要增强的Bean声明一个代理,结果配置文件里声明了大量的代理Bean。

在经典的Spring Aop中,Spring提供了自动代理创建器(Aotu proxy creator),有了自动代理创建器,就不再需要使用ProxyFactoryBean手工地创建代理了。

接口Animal和Book:


 package com.zzj.aop; public interface Animal { public void eat(); public void drink(); }
package com.zzj.aop; 
 
public interface Book { 
 public void read(); 
} 

目标类:

package com.zzj.aop; 
 
public class Human implements Animal, Book{ 
 @Override 
 public void eat() { 
  System.out.println("eat..."); 
 } 
 
 @Override 
 public void drink() { 
  System.out.println("drink..."); 
 } 
 
 @Override 
 public void read() { 
  System.out.println("read..."); 
 } 
} 

前置通知和后置通知:

package com.zzj.aop; 
 
import java.lang.reflect.Method; 
 
import org.springframework.aop.MethodBeforeAdvice; 
 
public class MethodBefore implements MethodBeforeAdvice { 
 
 public void before(Method arg0, Object[] arg1, Object arg2) 
   throws Throwable { 
  System.out.println("before " + arg0.getName()); 
 } 
 
} 

package com.zzj.aop; 
 
import java.lang.reflect.Method; 
 
import org.springframework.aop.AfterReturningAdvice; 
 
public class MethodAfter implements AfterReturningAdvice { 
 
 public void afterReturning(Object arg0, Method arg1, Object[] arg2, 
   Object arg3) throws Throwable { 
  System.out.println( "after " + arg1.getName()); 
 } 
 
} 

Spring配置文件:

<?xml version="1.0" encoding="UTF-8"?> 
<beans xmlns="http://www.springframework.org/schema/beans" 
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
  xsi:schemaLocation="http://www.springframework.org/schema/beans 
   http://www.springframework.org/schema/beans/spring-beans.xsd"> 
  <!-- 定义目标对象 --> 
  <bean id="human" class="com.zzj.aop.Human"></bean> 
  
  <!-- 定义通知 --> 
  <bean id="beforeAdvice" class="com.zzj.aop.MethodBefore"></bean> 
  <bean id="afterAdvice" class="com.zzj.aop.MethodAfter"></bean> 
  
  <!-- 定义切入点 --> 
  <bean id="methodNamePointcut" 
   class="org.springframework.aop.support.NameMatchMethodPointcut"> 
   <property name="mappedNames"> 
    <list> 
     <value>eat</value> 
     <value>read</value> 
    </list> 
   </property> 
  </bean> 
  
  <!-- 定义后置增强器(关联通知和切入点) --> 
  <bean id="AfterMethodNameAdvisor" 
   class="org.springframework.aop.support.DefaultPointcutAdvisor"> 
   <property name="advice" ref="afterAdvice"></property> 
   <property name="pointcut" ref="methodNamePointcut"></property> 
  </bean> 
  <!-- 定义前置增强器(关联通知和切入点) --> 
  <bean id="BeforeMethodNameAdvisor" 
   class="org.springframework.aop.aspectj.AspectJExpressionPointcutAdvisor"> 
   <property name="advice" ref="beforeAdvice"></property> 
   <property name="expression"> 
    <value>execution(* *.*in*(..))</value><!-- 可匹配drink --> 
   </property> 
  </bean> 
  
  <!-- 定义自动代理创建器 --> 
  <bean class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator"> 
   <property name="beanNames"> 
    <list> 
     <value>*human</value> 
    </list> 
   </property> 
   <property name="interceptorNames"> 
    <list> 
     <value>AfterMethodNameAdvisor</value> 
     <value>BeforeMethodNameAdvisor</value> 
    </list> 
   </property> 
  </bean> 
</beans> 

以上自动代理器可以为以human结尾的Bean创建代理。

测试:


package com.zzj.aop; 
 
import org.springframework.context.ApplicationContext; 
import org.springframework.context.support.ClassPathXmlApplicationContext; 
 
public class Test { 
 
 /** 
  * @param args 
  */ 
 public static void main(String[] args) { 
  ApplicationContext context = new ClassPathXmlApplicationContext( 
    "applicationContext.xml"); 
  Animal animal = (Animal) context.getBean("human"); 
  Book book = (Book) animal; 
  animal.eat(); 
  animal.drink(); 
  book.read(); 
 
 } 
 
} 

输出:

eat... 
after eat 
before drink 
drink... 
read... 
after read 

Spring还提供了另一个自动代理创建器:DefaultAdvisorAutoProxyCreator。这个自动代理创建器不需要任何配置,他会自动检查Ioc容器里声明的每一个增强器和Bean。如果存在与增强器切入点匹配的的Bean,那么DefaultAdvisorAutoProxyCreator将自动为其创建代理。

<bean class="org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator"/> 

需要注意的是,DefaultAdvisorAutoProxyCreator可能会代理那些不希望被代理的目标Bean,所以使用时要格外小心。

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

更多精彩内容其他人还在看

jsp中使用frameset框架 边框固定不让更改边框的大小

有时候可能要对自己布局好的页面不让用户更改边框的大小,这样我们可以在frame里面添加noresize="noresize"属性就可以实现其中的功能
收藏 0 赞 0 分享

response.getWriter().write()向前台打印信息乱码问题解决

本节主要介绍了response.getWriter().write()向前台打印信息乱码问题解决方法,需要的朋友可以参考下
收藏 0 赞 0 分享

jsp页面中如何将时间戳字符串格式化为时间标签

本节主要介绍了jsp页面中如何将时间戳字符串格式化为时间标签,需要的朋友可以参考下
收藏 0 赞 0 分享

获取上一页面的URL和本页的URL的方法

本节主要介绍了获取上一页面的URL和本页的URL的方法,需要的朋友可以参考下
收藏 0 赞 0 分享

window.top[_CACHE]实现多个jsp页面共享一个js对象

两个js页面要共享一个就js对象,想了半天用window.top['_CACHE']来存放这个变量,即可实现,不同Jsp页面直接的对象共享
收藏 0 赞 0 分享

通过过滤器(Filter)解决JSP的Post和Request中文乱码问题

这篇文章主要介绍了jsp中通过过滤器(Filter)解决JSP的Post和Request中文乱码问题的方法,需要的朋友可以参考下
收藏 0 赞 0 分享

JSP页面的动态包含和静态包含示例及介绍

这篇文章主要介绍了JSP页面的动态包含和静态包含示例及介绍,本文讲解了它们的区别并给出了相应例子,需要的朋友可以参考下
收藏 0 赞 0 分享

JSP中实现判断客户端手机类型并跳转到app下载页面

这篇文章主要介绍了JSP中实现判断客户端手机类型并跳转到app下载页面,实现的原理,是检测浏览器的 USER-AGENT 这个header,然后根据正则表达式来确定客户端类型,需要的朋友可以参考下
收藏 0 赞 0 分享

jsp实现点击help打开chm文件

有个javaweb项目,需要在portal上面点击help即可打开“帮助.chm”文件,下面与大家分享下jsp如何打开chm文件
收藏 0 赞 0 分享

JSP自定义分页标签TAG全过程

这篇文章主要介绍了JSP自定义分页标签TAG全过程,比较实用,需要的朋友可以参考下
收藏 0 赞 0 分享
查看更多