|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
最后我再次声明,我并没有说不看好java,实际上我对java很乐观的,毕竟她正在不断改进中,我相信她总有一天会和.net并驾齐驱的
鄙人面的文章中,我讲会屡次提到第一篇文章,第一篇文章是:Spring声明式事件管理源码解读之事件入手下手
假如要了解事件提交的话,了解事件入手下手是一个条件前提,以是请先看第一篇文章,再来看这篇
假如你细心看下往,我想一定是有良多劳绩,由于我们的确能从spring的代码和头脑中学到良多工具。
注释:
实在俺的感到就是事件提交要比事件入手下手庞大,看事件是不是提交我们仍是要回到TransactionInterceptor类的invoke办法
Java代码
publicObjectinvoke(MethodInvocationinvocation)throwsThrowable{
//Workoutthetargetclass:maybe<code>null</code>.
//TheTransactionAttributeSourceshouldbepassedthetargetclass
//aswellasthemethod,whichmaybefromaninterface
ClasstargetClass=(invocation.getThis()!=null)?invocation.getThis().getClass():null;
//Createtransactionifnecessary.
TransactionInfotxInfo=createTransactionIfNecessary(invocation.getMethod(),targetClass);
ObjectretVal=null;
try{
//Thisisanaroundadvice.
//Invokethenextinterceptorinthechain.
//Thiswillnormallyresultinatargetobjectbeinginvoked.
retVal=invocation.proceed();
}
catch(Throwableex){
//targetinvocationexception
doCloseTransactionAfterThrowing(txInfo,ex);
throwex;
}
finally{
doFinally(txInfo);//营业办法出栈后必需先实行的一个办法
}
doCommitTransactionAfterReturning(txInfo);
returnretVal;
}
个中的doFinally(txInfo)那一行很主要,也就是说不论怎样,这个doFinally办法都是要被挪用的,为何它这么主要呢,举个例子:
我们仍是以propregation_required来举例子吧,假定情形是如许的,AService中有一个办法挪用了BService中的,这两个办法都处在事件体当中,他们的传布路子都是required。那末挪用入手下手了,AService的办法起首进办法栈,并创立了TransactionInfo的实例,接着BService的办法进栈,又创立了一个TransactionInfo的实例,而重点要说明的是TransactionInfo是一个本身联系关系的外部类,第二个办法进栈时,会给新创立的TransactionInfo的实例设置一个属性,就是TransactionInfo对象中的privateTransactionInfooldTransactionInfo;属性,这个属性标明BService办法的创立的TransactionInfo对象是有一个old的transactionInfo对象的,这个oldTransactionInfo对象就是AService办法进栈时创立的TransactionInfo对象,我们还记得在createTransactionIfNecessary办法里有如许一个办法吧:
Java代码
protectedTransactionInfocreateTransactionIfNecessary(Methodmethod,ClasstargetClass){
//WealwaysbindtheTransactionInfotothethread,evenifwedidntcreate
//anewtransactionhere.ThisguaranteesthattheTransactionInfostack
//willbemanagedcorrectlyevenifnotransactionwascreatedbythisaspect.
txInfo.bindToThread();
returntxInfo;
}
就是这个bindToThread()办法在作祟:
privatevoidbindToThread(){
//ExposecurrentTransactionStatus,preservinganyexistingtransactionStatusfor
//restorationafterthistransactioniscomplete.
oldTransactionInfo=(TransactionInfo)currentTransactionInfo.get();
currentTransactionInfo.set(this);
}
<p>
而学习JAVA我觉得最应该避免的就是:只学习,不思考,只记忆,不实践! |
|