摘要: 照例先做广告:去皮儿网(http://www.qupier.com),每月26日通知你是否中签。很快要退出广州的摇号结果通知了。
Seam的Events用的很舒服,spring提供的事件机制太罗嗦,所以起了念头,着这思路移植一下。最终效果如下:
//发布事件
Events.instance().fire(eventName,arg1,arg2.);
//发布异步事件
Events.instance().fireAsynchronous(eventName,arg1,arg2.);
//在事务中,发布当事务成功commit时触发的事件
Events.instance().fireOnTransactionSuccess(eventName,arg1,arg2.);
//在事务中,发布当事务完成(commit/rollback)时触发的事件
Events.instance().fireOnTransactionCompletion(eventName,arg1,arg2
阅读全文