@Pointcut("execution(public * com.dao..*.*(..))")public void myMethod(){};其他方法调用myMethid()如:@Before("myMethod()")运行时报错,查到另一个解释是eclipse版本太新,换个旧版本就解决了,不...
分类:
系统相关 时间:
2014-11-02 23:48:59
阅读次数:
251
Timer的官方描述是:A facility for threads to schedule tasks for future execution in a background thread.
Tasks may be scheduled for one-time execution, or for repeated execution at regular intervals.
意思就是...
分类:
其他好文 时间:
2014-11-01 17:52:47
阅读次数:
169
??
The Common Language Runtime (CLR), the virtual-machine component of Microsoft's .NET framework, manages the execution of .NET programs. A process known as just-in-time compilation
converts compi...
本篇紧接着概念篇,从宏观角度上看一下Samza实时计算服务的架构是什么样的?
Samza是由以下三层构成:
1. 数据流层(A streaming layer)
2. 执行层(An execution layer)
3. 处理层(A progressing layer)
那Samza是依靠哪些技术完成以上三层的组合呢...
分类:
其他好文 时间:
2014-10-29 17:11:57
阅读次数:
261
Android虚拟机在支持Intel VT技术的CPU上,可以使用HAXM(Hardware Accelerated Execution Manager)得到硬件加速支持,使得虚拟机运行速度得到极大提升,速度提升5-10倍。注意,你必须拥有一颗支持VT的CPU,这个技术是Intel的,所以AMD的C...
分类:
移动开发 时间:
2014-10-28 23:32:00
阅读次数:
250
TasksA task is a logical representation of an execution environment. Tasks are usedin order to divide system resources between each running program. E...
分类:
系统相关 时间:
2014-10-28 13:35:52
阅读次数:
211
在做抓取前,记得把php.ini中的max_execution_time设置的大点,不然会报错的。一、用Snoopy.class.php抓取页面 一个挺萌的类名。功能也很强大,用来模拟浏览器的功能,可以获取网页内容,发送表单等。 1)我现在要抓取一个网站的列表页的内容,我要抓取的是全国的医院信息.....
分类:
Web程序 时间:
2014-10-28 11:55:27
阅读次数:
249
任意公共方法的执行:execution(public * *(..))任何一个以“set”开始的方法的执行:execution(* set*(..))AccountService 接口的任意方法的执行:execution(* com.xyz.service.AccountService.*(..))...
分类:
其他好文 时间:
2014-10-28 00:18:09
阅读次数:
252
研究团队有个做智能服务组合的,其中用到叫BEPL的东西,因为全称是Business Process Execution Language,译成中文就是商业执行过程语言,这个东东的是整合SOA的一个执行标准语言,其中有那么一个研究叫做BPM,即业务过程管理,专门研究业务过程的。当然这些研究使用的最多的...
分类:
其他好文 时间:
2014-10-27 21:09:34
阅读次数:
297
1.CompletionService源码分析
CompletionService内部实现还是维护了一个可阻塞的队列,通过代理设计模式,从而操作队列。
/**
* Creates an ExecutorCompletionService using the supplied
* executor for base task execution and a
...
分类:
编程语言 时间:
2014-10-26 15:38:51
阅读次数:
113