• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

软件测测之框架:一个使用spring框架AOP的有趣例子

发布: 2009-11-04 10:49 | 作者: 不详 | 来源: 领测软件测试网采编 | 查看: 177次 | 进入软件测试论坛讨论

领测软件测试网

package com.denny_blue.springdemo.aop;

public class BuyBookException extends RuntimeException {
 public BuyBookException(String msg){
  super(msg);
  System.out.println(msg);
 }

}

OK,接下来就是各类增强了,前增强,在业务方法buyBook之前调用,显示欢迎信息:

package com.denny_blue.springdemo.aop;

import java.lang.reflect.Method;

import org.springframework.aop.MethodBeforeAdvice;

public class MyBeforeAdvice implements MethodBeforeAdvice {


 public void before(Method arg0, Object[] arg1, Object target)
   throws Throwable {
  String customer=(String)arg1[0];      //第2个参数组就是被增强的方法传入的参数,本例中即customer,book
  System.out.println("欢迎光临!"+customer+"!");   //显示欢迎信息!,在buyBook方法前调用

 }

}

 

然后是后增强,当顾客已经买了书之后,显示欢送信息:

package com.denny_blue.springdemo.aop;

import java.lang.reflect.Method;

import org.springframework.aop.AfterReturningAdvice;

public class MyAfterAdvice implements AfterReturningAdvice {

 public void afterReturning(Object arg0, Method arg1, Object[] arg2,
   Object arg3) throws Throwable {
   String customer=(String)arg2[0];      //同前增强一样,参数组3为传入参数,具体见spring doc
  System.out.println("欢迎下次再来!"+customer+"!");   //显示欢送信息!
 }

}

OK,有了上面两个advice我们就能提供给顾客很好的服务态度了,等等?我们还有规则没实现,不是说一名顾客只能买一本书吗?OK,我们用环绕增强来解决,在环绕增强中保存一个HashSet,判断顾客是否来过,来过就抛出一个异常,没来过再放入此Set中:

文章来源于领测软件测试网 https://www.ltesting.net/

42/4<1234>

关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网