免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1130 | 回复: 0
打印 上一主题 下一主题

Spring自动代理 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-04-23 09:00 |只看该作者 |倒序浏览

                                接触Srping已经好长时间了,没有学精它,用到哪就看哪,不求甚解难以精通一项技术了,惭愧!项目中有个需求要在每个线程停止自动检查线程所使用资源,所以我想拦截interrupt方法就可实现,经测试没有成功,因为
Aop拦截的类必须统一实现一个接口,interrupt方法又是Thread自带的,项目中线程没有统一定义接口,所以失败但还是测试了一下Spring的自动代理,感觉还是挺好用的,在这个新技术新框架层出的年代,自己真的有点过时了,前一段时间听说Spring的创始人已经投奔微软了,我想对java还是会有一定影响的。
下面是测试代码,很简单自己记录一下,以备后用。
//业务类
package com.xujj.spring;
/**
* IHelloWorld接口
*
* @author xujj
*/
public  interface IHelloWorld {
    public abstract  String test(String a);
}
package com.xujj.spring;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
/**
* IHelloWorld接口实现
*
* @author xujj
*/
public class HelloWorld implements IHelloWorld {
    private static final Log log = LogFactory.getLog(HelloWorld.class);
    public String test(String a) {
        log.info(a);
        return a;
    }
}
//通知,拦截方法
/**
*
*/
package com.xujj.spring;
import org.aopalliance.intercept.MethodInterceptor;
import org.aopalliance.intercept.MethodInvocation;
/**
* @author xujj
*
*/
public class TestAdvice implements MethodInterceptor {
    public Object invoke(MethodInvocation arg0) throws Throwable {
        System.out.println("~~~~~~~~~~~~~~~~before~~~~~~~~~~~~");
        String value = String.valueOf(arg0.getArguments()[0]);
        if (value.startsWith("hello"))
            arg0.proceed();
        System.out.println("~~~~~~~~~~~~~~~after~~~~~~~");
        return null;
    }
}
//客户端:
package com.xujj.spring;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.FileSystemXmlApplicationContext;
/**
* HelloWorld客户应用
*
* @author xujj
*/
public class HelloClient {
    protected static final Log log = LogFactory.getLog(HelloClient.class);
    public static void main(String[] args) {
        ApplicationContext ctx=new FileSystemXmlApplicationContext("src/appcontext.xml");
       IHelloWorld hw = (IHelloWorld) ctx.getBean("hello");
//通过代理获取实例,只能转换成接口类型,不能转换成具体类
       hw.test("ahello world!!");
    }
}
//配置:
?xml version="1.0" encoding="UTF-8"?>
!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN"
   "http://www.springframework.org/dtd/spring-beans.dtd">
beans>
    bean id="advisor"
        class="org.springframework.aop.support.RegexpMethodPointcutAdvisor">
        property name="advice">
            ref bean="TestAdvice" />
        /property>
        property name="pattern">
            value>.*test.*/value>
        /property>
    /bean>
    bean id="TestAdvice" class="com.xujj.spring.TestAdvice">/bean>
    bean id="autoProxyCreator"
        class="org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator" />
    bean id="hello" class="com.xujj.spring.HelloWorld" />
/beans>
               
               
               
               

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/40588/showart_573445.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP