通常我们对于异常的处理方式都是大同小异的,要么直接捕获并处理,要么让它抛向上一层,要么就是记录到日志里,或者发邮件提供管理员,但这样下来一个项目中便会到处充斥着 try/catch ,并且 catch 中的代码基本类似,于是我们闻到的其中难闻的坏味道。
本文将介绍如何通过
spring.
net 的 aop 特性实现异常的统一处理,如果我们需要在异常发生时做一些操作的话我们就必须实现
spring.aop.ithrowsadvice,该接口没有任何实现方法,是一个空接口,它仅仅做为一个标记接口而存在,但实现了 ithrowsadvice 接口的类必须定义至少一个 afterthrowing 方法,方法的签名如下:
afterthrowing([methodinfo method, object[] args, object target], exception subclass);
其中中括号括起来的前三个参数是可选的,返回值可以是任意数据类型。spring.aop.framework.adapter.throwsadviceinterceptor 类实现对实现了 spring.aop.ithrowsadvice 派生类中的方法依赖注入,其中的 throwsadviceinterceptor() 方法检查 spring.aop.ithrowsadvice 的派生类是否定义了至少一个异常处理方法,如果没有则抛出 argumentexception 异常,mapallexceptionhandlingmethods() 方法则在定义好的重载方法中查找出异常类型与最后一个参数所定义的类型中最接近的方法,而且我们不应该在其中实现了两个相同异常类型的方法,即使他们的参数数目不同,否则也将抛出 argumentexception 异常。
[下面引用自《spring 技术手册》第4章 p94 页中的一段话]
注意到当异常发生时, throw advice 的任务只是执行对应的方法,您并不能在 throw advice 中将异常处理掉,在 throw advice 执行完毕后,原告的异常仍将传播至应用程序之中, throw advice 并不介入应用程序的异常处理,异常处理仍旧是应用程序本身所要负责的,如果想要在 throw advice 处理时中止应用程序的处理流程,作法是抛出其它的异常。
接下来看个 throws advice 的实际例子,首先定义 ihello 接口:
using system;
namespace testthrowadvice
{
public interface ihello
{
void hello(string name);
}
}
接着定义一个 hellospeaker 类来实现 ihello 接口,并在 hello() 方法中模拟程序发生错误时的异常抛出:
using system;
namespace testthrowadvice
{
public class hellospeaker : ihello
{
public void hello(string name)
{
console.writeline("hello, " name);
//抱歉! 程序错误! 发生异常 xd
throw new exception("发生异常");
}
}
}
如果您需要在应用程序抛出异常时,介入 throw advice 提供一些服务,例如记录一些异常信息,则可以实现 spring.aop.ithrowsadvice 接口,在这个例子中我使用了 log4net 组件来实现日志的记录:
using system;
using spring.aop;
using log4net;
using log4net.core;
using system.reflection;
[assembly: log4net.config.xmlconfigurator(watch = true)]
namespace testthrowadvice
{
public class somethrowadvice : ithrowsadvice
{
private ilog logger;
public somethrowadvice()
{
logger = logmanager.getlogger(this.gettype());
}
public void afterthrowing(methodinfo method, object[] args, object target, exception exception)
{
// 记录异常
logger.info("记录异常", exception);
}
}
}
接着在配置文件(我这里使用了独立配置文件)中写下以下的定义,让 throw advice 在异常发生时提供记录服务:
xml version="1.0" encoding="utf-8"?>
<objects xmlns="http://www.springframework.net" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance"
xsi:schemalocation="http://www.springframework.net
http://www.springframework.net/xsd/spring-objects.xsd">
<object id="somethrowadvice" type="testthrowadvice.somethrowadvice, testthrowadvice" />
<object id="hellospeaker" type="testthrowadvice.hellospeaker, testthrowadvice" />
<object id="helloproxy" type="spring.aop.framework.proxyfactoryobject, spring.aop" >
<property name="proxyinterfaces">
<list>
<value>testthrowadvice.ihello,testthrowadvicevalue>
list>
property>
<property name="target">
<ref object="hellospeaker" />
property>
<property name="interceptornames">
<list>
<value>somethrowadvicevalue>
list>
property>
object>
objects>
最后剩下我们的程序入口 main() 函数了:
using system;
using spring.context;
using spring.context.support;
namespace testthrowadvice
{
public class program
{
static void main(string[] args)
{
log4net.config.xmlconfigurator.configure();
iapplicationcontext context = new xmlapplicationcontext(@"../../springnet.xml");
ihello helloproxy = (ihello)context.getobject("helloproxy");
try
{
helloproxy.hello("justin");
}
catch (exception ex)
{
// 应用程序的异常处理
console.writeline(ex.message);
}
}
}
}
程序执行结果输出:
hello, justin
发生异常...
日志记录中的结果:
2006-10-30 20:59:03,125 [4020] info testthrowadvice.somethrowadvice - 记录异常
system.exception: 发生异常...
在 testthrowadvice.hellospeaker.hello(string name) 位置 e:\..\..\springnetdemo\testthrowadvice\hellospeaker.cs:行号 14
在 spring.objects.objectutils.invokemethod(methodinfo method, object instance, object[] arguments) 位置 c:\projects\daily\spring.net\src\spring\spring.core\objects\objectutils.cs:行号 489
在 spring.aop.framework.reflectivemethodinvocation.invokejoinpoint() 。。。。。
本博客为学习交流用,凡未注明引用的均为本人作品,转载请注明出处,如有凯发k8网页登录的版权问题请及时通知。由于博客时间仓促,错误之处敬请谅解,有任何意见可给我留言,愿共同学习进步。