上一页 1 ··· 206 207 208 209 210 211 212 213 214 ··· 229 下一页
摘要: <Hudson-ci‎ |Using Hudson‎ |Installing Hudson(Redirected fromHudson-ci/Installing Hudson RPM)Hudson Continuous Integration ServerWebsiteDownloadCommunityMailing List•Forums•IRCBugzillaOpenHelp WantedBug DayContributeBrowse SourceInstalling Hudson on RedHat, Oracle Enterprise Linux & other RPM 阅读全文
posted @ 2013-12-17 19:58 一天不进步,就是退步 阅读(391) 评论(0) 推荐(0) 编辑
摘要: "Install as Windows Service" from the menu:Confirm your intention to install as a service. The installation will place the program files to the directory designated as the slave root directory (from the "configure executors" screen.)Once the installation succeeds, you'll be a 阅读全文
posted @ 2013-12-17 19:54 一天不进步,就是退步 阅读(769) 评论(0) 推荐(0) 编辑
摘要: 现在,使用打印的sql在oracle数据库客户端能查询出结果,但执行ibatis查询语句不行,ibatis插入可以。解决问题的历程:1. 去掉sql中的where语句,仍然查找不到,确定不是sql错误。2.检查oracle中该表的权限是否允许访问。都排除了。最后无意中发现sql map文件中的返回值为map类型,程序中的返回值为list类型。 阅读全文
posted @ 2013-12-16 18:10 一天不进步,就是退步 阅读(2295) 评论(0) 推荐(0) 编辑
摘要: http://www.ibm.com/developerworks/cn/java/j-lo-proxy1/#icommentshttp://www.ibm.com/developerworks/cn/java/j-lo-proxy2/引言Java 动态代理机制的出现,使得 Java 开发人员不用手工编写代理类,只要简单地指定一组接口及委托类对象,便能动态地获得代理类。代理类会负责将所有的方法调用分派到委托对象上反射执行,在分派执行的过程中,开发人员还可以按需调整委托类对象及其功能,这是一套非常灵活有弹性的代理框架。通过阅读本文,读者将会对 Java 动态代理机制有更加深入的理解。本文首先从 阅读全文
posted @ 2013-12-14 23:44 一天不进步,就是退步 阅读(420) 评论(0) 推荐(0) 编辑
摘要: 插入排序算法public class InsertSortTest { /** * @param args */ public static void main(String[] args) { int[] a={3,5,9,16,29,47,78,89,94}; int key=47; int[] b=insertSort(a,key); for(int i=0;iunsorted[len-1]){ sorted[sorted.length-1]=key; ... 阅读全文
posted @ 2013-12-14 21:53 一天不进步,就是退步 阅读(816) 评论(0) 推荐(0) 编辑
摘要: 1.unix体系结构其中,system calls是kernel和外部交互的接口。shell 用来跑一些应用程序的接口。library基于system calls的最顶层。applications 应用层。2.登录登录口令存放在/etc/passwd文件中,冒号分割成7部分,规格如下:the login name, encrypted password, numeric user ID(205), numeric group ID (105),a comment field, home directory (/home/sar), and shell program (/bin/ksh).我的 阅读全文
posted @ 2013-12-14 10:04 一天不进步,就是退步 阅读(270) 评论(0) 推荐(0) 编辑
摘要: hbase文档地址:http://hbase.apache.org/book/book.htmlopenstack资料http://www.openstack.org/ 阅读全文
posted @ 2013-12-10 09:25 一天不进步,就是退步 阅读(357) 评论(0) 推荐(0) 编辑
摘要: http://www.cubrid.org/blog/dev-platform/understanding-jvm-internals/ http://architects.dzone.com/articles/understanding-jvm-internals https://blog.jam 阅读全文
posted @ 2013-12-09 09:57 一天不进步,就是退步 阅读(1183) 评论(0) 推荐(0) 编辑
摘要: http://www.kuqin.com/java/20111031/314144.html在《Java虚拟机规范》之中,详细描述了虚拟机指令集中每条指令的执行过程、执行前后对操作数栈、对局部变量表的影响等细节。这些细节描述与Sun的早期虚拟机(Sun Classic VM)高度吻合,但随着技术的发展,高性能虚拟机真正的细节实现方式已经渐渐与虚拟机规范所描述产生越来越大的差距,虚拟机规范中的描述逐渐成了虚拟机实现的“概念模型”——即实现只能保证规范描述等效。基于上面的原因,我们分析程序的执行语义问题(虚拟机做了什么)时,在字节码层面上分析完全可行,但分析程序的执行行为问题(虚拟机是怎样做的、性 阅读全文
posted @ 2013-12-09 00:43 一天不进步,就是退步 阅读(780) 评论(0) 推荐(0) 编辑
摘要: http://www.webspherechina.net/home/space.php?uid=191&do=blog&id=7572如果想分析自己的JAVA Application时,可以使用jmap程序来生成heapdump文件。例:jmap -heap 1234(1234为进程号)jmap是JDK自带的一个工具,非常小巧方便,其支持参数如下:-heap打印heap空间的概要,这里可以粗略的检验heap空间的使用情况。例:jmap -heap 12345输出:Attaching to process ID 2657, please wait...Debugger atta 阅读全文
posted @ 2013-12-09 00:39 一天不进步,就是退步 阅读(30888) 评论(0) 推荐(0) 编辑
上一页 1 ··· 206 207 208 209 210 211 212 213 214 ··· 229 下一页