上一页 1 2 3 4 5 6 7 8 9 ··· 19 下一页
  2013年2月1日
摘要: 最近在学习Struts2,在阅读源码的过程中,学习到了一些比较金典的算法逻辑,现在分享一个递归算法的使用:个人感觉这个算法非常的精妙,见识了递归算法使用的高明之处,现在将源码粘贴出来:1、类:XmlConfigurationProvider的loadPackages方法,该方法主要是将配置文件(XML)文件中的package节点的配置信息读取出来: 1 public void loadPackages() throws ConfigurationException { 2 List<Element> reloads = new ArrayList<Element>... 阅读全文
posted @ 2013-02-01 22:48 Coldest Winter 阅读(531) 评论(0) 推荐(0) 编辑
  2013年1月6日
摘要: http://blog.csdn.net/java2000_wl/article/details/7572828http://downpour.iteye.com/category/54022http://www.cnblogs.com/yangjin-55/archive/2012/05/16/2786550.htmlhttp://rubbing-struts2.iteye.com/blog/1582443http://www.doc88.com/p-317622531483.htmlhttp://struts.apache.org/2.3.8/docs/testing-actions.ht 阅读全文
posted @ 2013-01-06 06:49 Coldest Winter 阅读(129) 评论(0) 推荐(0) 编辑
  2012年12月27日
摘要: 网址:http://zhaohe162.blog.163.com/blog/static/382167972011117022439/使用SVN检出Struts Spring Hibernate源码2011-12-07 12:02:02|分类:SVN|标签:springstrutshibernatesvntomcat|字号订阅Spring Spring源码是由springframework.org维护管理的,spring-framework 是spring 3.0以上版本spring-maintenance 是spring 3.0以下版本spring-security是原Acegi演变出的sp 阅读全文
posted @ 2012-12-27 22:42 Coldest Winter 阅读(394) 评论(0) 推荐(0) 编辑
  2012年12月25日
摘要: 网址:http://dev.yesky.com/486/2354486.shtml本文介绍如何利用Eclipse插件Implementors在Eclipse中的使用。 Eclipse是目前非常流行的开发平台,开放扩展的架构让很多程序员找到了自己个性化的工作环境。 问题提出: 如果你想看看某个类或者方法的实现,一般是Ctrl + 鼠标左键,单击即可以打开这个类或者方法的具体实现代码。但是如果碰到接口时,只是到达接口而已,不能到达具体的实现类里。 解决方法:利用Eclipse的Implementors插件。 当追踪方法代码时,Eclipse默认是转到方法的接口类,而接口中是只有方法名称没... 阅读全文
posted @ 2012-12-25 07:32 Coldest Winter 阅读(465) 评论(0) 推荐(0) 编辑
  2012年12月24日
摘要: New Result Caching Functionality Oracle Database 11g introduces several new caching features that let you utilize memory moreefficiently, which results in faster query processing. There are actually two types of cachingfeatures: the server result cache that caches SQL query results as well as PL//S. 阅读全文
posted @ 2012-12-24 07:20 Coldest Winter 阅读(405) 评论(0) 推荐(0) 编辑
  2012年12月19日
摘要: 本人系转载自:http://www.2cto.com/database/201108/102093.html http://wenku.baidu.com/view/4f429e126edb6f1aff001f75.html http://www.cnblogs.com/dongzhiquan/archive/2012/01/20/2328365.html http://www.itpub.net/thread-478999-1-1.html1、oracle的优化器oracle有三种优化器RULECOSTCHOOSE通过参数OPTIMI... 阅读全文
posted @ 2012-12-19 07:57 Coldest Winter 阅读(231) 评论(0) 推荐(0) 编辑
  2012年12月13日
摘要: 执行计划中的各个参数解释:一、Recursive calls (递归调用)1、参考:Oracle Database Reference, 10g Release 2 (10.2).pdf第916页 Number of recursive calls generated at both the userand system level. Oracle maintains tables used forinternal processing. When Oracle needs to make achange to these tables, it internally generates an. 阅读全文
posted @ 2012-12-13 07:30 Coldest Winter 阅读(1106) 评论(0) 推荐(0) 编辑
摘要: Oracle内存全面分析(1)网址:http://www.hellodba.com/reader.php?ID=100&lang=CN 阅读全文
posted @ 2012-12-13 07:27 Coldest Winter 阅读(131) 评论(0) 推荐(0) 编辑
  2012年12月5日
摘要: http://andrewfraserdba.com/training/ 阅读全文
posted @ 2012-12-05 21:57 Coldest Winter 阅读(117) 评论(0) 推荐(0) 编辑
  2012年12月4日
摘要: 网址:http://www.oracle-base.com/articles/misc/efficient-function-calls-from-sql.phpEfficient Function Calls From SQL对于在SQL中更加高效的使用PL/SQL函数,本文提供了以下几种解决办法: 1、标量子查询 2、使用DETERMINISTC(确定性的;命运注定论的)关键字 3、使用session缓存(在不同的session中也可以共用),该方法只在11g之后的版本可以使用 4、使用PL/SQL集合进行手动的控制缓存 5、使用上下文进行手动的控制缓存 6、注意在WHERE语... 阅读全文
posted @ 2012-12-04 07:31 Coldest Winter 阅读(346) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 19 下一页