摘要:
It's common for software systems to make remote calls to software running in different processes, probably on different machines across a network. One...
阅读全文
posted @ 2014-09-17 10:45
一天不进步,就是退步
阅读(1390)
推荐(0)
摘要:
在数据查询时,尽量减少in子查询而使用表连接的方式进行,效率更高。
阅读全文
posted @ 2014-09-16 03:00
一天不进步,就是退步
阅读(656)
推荐(0)
摘要:
在游标循环中,使用使用select into 变量var时,再判断var isnull 或者length(var)=0时,跳出循环。解决方式:使用set var=(select id from table);然后再判断var isnull 或者length(var)=0
阅读全文
posted @ 2014-09-15 21:13
一天不进步,就是退步
阅读(1322)
推荐(0)
摘要:
redis提供了rate limit demo 如下所示:INCRkeyAvailable since 1.0.0.Time complexity:O(1)Increments the number stored atkeyby one. If the key does not exist, it ...
阅读全文
posted @ 2014-09-15 09:57
一天不进步,就是退步
阅读(2785)
推荐(0)
摘要:
问题:使用游标遍历时,发现使用select var into tmp where var=?然后判断if tmp is null时,不能走完所有的遍历。经debug发现,当var为空时,则跳出游标的遍历。解决方式:使用if not exists(select var into tmp where v...
阅读全文
posted @ 2014-09-12 11:23
一天不进步,就是退步
阅读(6162)
推荐(0)
摘要:
Part Ireference from:http://gridgain.blogspot.kr/2014/09/two-phase-commit-for-distributed-in.html2-Phase-Commitis probably one of the oldest consensus...
阅读全文
posted @ 2014-09-12 09:49
一天不进步,就是退步
阅读(589)
推荐(0)
摘要:
Spring provides its own implementation of remoting service known asHttpInvoker. It can be used for http request than RMI and works well across the fir...
阅读全文
posted @ 2014-09-11 17:20
一天不进步,就是退步
阅读(1499)
推荐(0)
摘要:
概述继 Spring 2.0 对 Spring MVC 进行重大升级后,Spring 2.5 又为 Spring MVC 引入了注解驱动功能。现在你无须让 Controller 继承任何接口,无需在 XML 配置文件中定义请求和 Controller 的映射关系,仅仅使用注解就可以让一个 POJO ...
阅读全文
posted @ 2014-09-11 15:18
一天不进步,就是退步
阅读(1125)
推荐(0)
摘要:
HTML DOM Button 对象Button 对象Button 对象代表 HTML 文档中的一个按钮。该元素没有默认的行为,但是必须有一个 onclick 事件句柄以便使用。在 HTML 文档中 标签每出现一次,一个 Button 对象 就会被创建。您可以通过遍历表单的 elements[] ...
阅读全文
posted @ 2014-09-10 15:25
一天不进步,就是退步
阅读(432)
推荐(0)
摘要:
1.for Java using SpringConfiguration of the CAS Client for Java via Spring IoC will depend heavily on their DelegatingFilterProxy class. For each filt...
阅读全文
posted @ 2014-09-09 15:45
一天不进步,就是退步
阅读(3103)
推荐(0)