上一页 1 ··· 177 178 179 180 181 182 183 184 185 ··· 229 下一页
摘要: JDK1.4 的 NIO 有效解决了原有流式 IO 存在的线程开销的问题,在 NIO 中使用多线程,主要目的已不是为了应对每个客户端请求而分配独立的服务线程,而是通过多线程充分使用用多个 CPU 的处理能力和处理中的等待时间,达到提高服务能力的目的。多线程的引入,容易为本来就略显复杂的 NIO 代码... 阅读全文
posted @ 2014-06-19 20:50 一天不进步,就是退步 阅读(509) 评论(0) 推荐(0) 编辑
摘要: 原文:http://blog.csdn.net/hunterno4/article/details/11687269Sonar简介Sonar是一个用于代码质量管理的开源平台,用于管理源代码的质量,可以从七个维度检测代码质量通过插件形式,可以支持包括java,C#,C/C++,PL/SQL,Cobol... 阅读全文
posted @ 2014-06-19 19:38 一天不进步,就是退步 阅读(206) 评论(0) 推荐(0) 编辑
摘要: 当数据在网络上传播的时候,通过使用 SSL 对其进行加密和保护,JSSE 为 Java 应用程序提供了安全的通信。在本篇有关该技术的高级研究中,Java 中间件开发人员 Ian Parkinson 深入研究了 JSSE API 较不为人知的方面,为您演示了如何围绕 SSL 的一些限制进行编程。您将学... 阅读全文
posted @ 2014-06-19 18:38 一天不进步,就是退步 阅读(5314) 评论(0) 推荐(0) 编辑
摘要: In my previous post, I listed down most commontelnet commands for memcachedwith sample execution terminal logs. Today I want to discuss about the Memc... 阅读全文
posted @ 2014-06-19 18:32 一天不进步,就是退步 阅读(606) 评论(0) 推荐(0) 编辑
摘要: JCA (J2EE 连接器架构,Java Connector Architecture)是对J2EE标准集的重要补充。因为它注重的是将Java程序连接到非Java程序和软件包中间件的开发。连接器特指基于Java连接器架构的源适配器,其在J2EE1.3规范中被定义。JCA连接器同时提供了一个重要的能力... 阅读全文
posted @ 2014-06-19 17:47 一天不进步,就是退步 阅读(2139) 评论(0) 推荐(0) 编辑
摘要: The following topics are covered in this section:JAAS and WebLogic ServerJAAS Authentication Development EnvironmentWriting a Client Application Using... 阅读全文
posted @ 2014-06-18 16:22 一天不进步,就是退步 阅读(1233) 评论(0) 推荐(0) 编辑
摘要: The Java Authentication and Authorization Service (JAAS) is a standard extension to the security in the J2SE Development Kit 5.0. JAAS provides the ab... 阅读全文
posted @ 2014-06-18 15:21 一天不进步,就是退步 阅读(349) 评论(0) 推荐(0) 编辑
摘要: Part 1: The asynchronous channel APIsThe More New I/O APIs for the Java™ Platform (NIO.2) is one of the major new functional areas in Java 7, adding a... 阅读全文
posted @ 2014-06-17 22:20 一天不进步,就是退步 阅读(652) 评论(0) 推荐(0) 编辑
摘要: The new input/output (NIO) library, introduced with JDK 1.4, provides high-speed, block-oriented I/O in standard Java code. This hands-on tutorial cov... 阅读全文
posted @ 2014-06-17 22:15 一天不进步,就是退步 阅读(443) 评论(0) 推荐(0) 编辑
摘要: 最近在研究jdk源码,发现debug时无法查看源码里的变量值。因为sun提供的jdk并不能查看运行中的局部变量,需要重新编译一下rt.jar。下面这六步是编译jdk的具体步骤:Step1:LocatetheJDKsourceFirstnavigatetotheJDKinstalldirectory,... 阅读全文
posted @ 2014-06-16 11:03 一天不进步,就是退步 阅读(3984) 评论(3) 推荐(1) 编辑
上一页 1 ··· 177 178 179 180 181 182 183 184 185 ··· 229 下一页