ThrowsAdvice和自动代理的例子
参考:
http://www.blogjava.net/liuwentao253/archive/2007/01/23/95494.html
MethodInterceptor --> org.springframework.aop.support.RegexpMethodPointcutAdvisor
ThrowsAdvice --> org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator
接口:
Java测试类:public static void main(String[] args) {ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml");//IBizProcessImpl t = ctx.getBean("bizOne",IBizProcessImpl.class);IBizProcessImpl t = ctx.getBean("bizOneTarget",IBizProcessImpl.class);try {t.doAnotherThing();} catch (Exception e) {// TODO: handle exception}}