摘要: 一般可以简单的用@Async来配置一个异步方法。例如1/**2*发送MIME格式的用户修改通知邮件3*/4@Async5publicvoidsendNotificationMail(MapkeyValue,StringtoAddress,StringsubJect,StringtemplateName){67String[]toList={toAddress};sendNotificationMail(keyValue,toList,subJect,templateName);8}但是这么做只是简单做法,大概积累3封邮件以后就会堵塞线程。所以要加上配置文件<task:annotation 阅读全文
posted @ 2012-10-16 23:27 clarkapp 阅读(12830) 评论(0) 推荐(0) 编辑