自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

  • 博客(25)
  • 资源 (64)
  • 收藏
  • 关注

转载 Amazon EC2配置步骤和一些问题

注册过程: 1、注册amazon aws帐号,需要一张信用卡和一个固定电话,过程不再赘述。此过程中可得到一个.pem文件。2、进入aws management console,在EC2部分,点击launch instance按钮启动一个ec2 instance。

2011-08-11 22:23:54 1453

转载 Douyu0.6.1 源码分析 之 MVC篇

继 ZHH2009 从09年11月发布 Douyu 的第一个版本后,至到今年6月已经发布 Douyu 的第二个版本了。其很多方面都有突破性的设计思路和实现方式,如异步 Action、View中读取Controller 中的本地变量、基于 javac 的动态编译、动态代码生成等

2011-08-11 21:53:46 648

转载 Java 7 新特性

“举世瞩目”的java 7近日发布,oracle网站上列出了java 语言的新特性http://www.oracle.com/technetwork/java/javase/jdk7-relnotes-418459.html,最近出差,晚上闲来无事,将这些java语言的新特性试了

2011-08-11 21:21:49 1349

转载 Fastjson技术内幕

文章来源:http://code.alibabatech.com/wiki/display/FastJSON/Inside+Fastjson JSON协议使用方便,越来越流行。JSON的处理器有很多,为什么需要再写一个呢?因为我们需要一个性能很好的JSON Parser,

2011-08-11 19:49:55 632

转载 网络编程中Nagle算法和Delayed ACK的测试

Nagle算法的立意是良好的,避免网络中充塞小封包,提高网络的利用率。但是当Nagle算法遇到delayed ACK悲剧就发生了。Delayed ACK的本意也是为了提高TCP性能,跟应答数据捎带上ACK,同时避免糊涂窗口综合症,也可以一个ack确认多个段来节省开销。    悲剧

2011-07-21 22:51:51 2379 3

转载 编写好代码的10条戒律

1. DRY: 不要重复你自己(Don’t repeat yourself)  DRY是一条最容易理解但又是相对比较难以应用的原则。它是指当你在两处或者更多的地方发现相似代码时,我们应当把它们抽象成一个新的函数,在之前重复的地方调用新的函数并带上适当的参数。  DRY也许是最普遍

2011-07-21 20:31:07 447

转载 25+ 实用的Linux和Unix手册

<br /> 25+ 实用的Linux和Unix手册2009-10-30 12:33 by 资深编辑 wutao0603 <br />评论(22) 有7069人浏览 收藏声明:JavaEye新闻文章的版权属于JavaEye网站所有,严禁任何网站转载本文,否则必将追究法律责任!< > 猎头职位: 北京: Java搜索工程师手册中包括 Linux的命令行,Linux安全,Liunx管理,Gnome/KDE等……你可以选择自己需要的下载。 <br /><br />1.Unix / Linux操作系统命令参考: <

2010-08-19 23:10:00 696 1

原创 数据库驱动应用程序中影响性能的反模式

 数据库驱动应用程序中影响性能的反模式作者 Alois Reitbauer 译者 张晓庆 发布于 2009年11月13日 上午12时1分社区  主题 ,  标签 , 几乎所有现代应用程序都要通过数据库实现数据持久化。数据库访问层经常要对严重的性能问题负责。一旦遇到数据库的问题,大多数人开始研究数据库本身。正确的索引和数据库结构对提高性能非常关键。然而,很多时候糟糕的性能或可伸缩

2009-12-10 23:51:00 514

转载 UNIX 网络分析

UNIX 网络分析理解 UNIX 系统网络配置 理解主机的网络配置要更好地理解网络,第一步是理解当前使用的机器的网络配置。这将为您提供许多参考基准,比如当前主机的 IP 地址、DNS 配置以及可以连接并与之通信的其他机器。查找配置信息确定正在使用的机器的当前配置可以使您获得对环境的基本了解。您的第一个任务是确定当前机器的 IP 地址和网络掩码(mask)。通

2009-07-11 21:49:00 1269

转载 用于判断是否选用ESB的检查清单

用于判断是否选用ESB的检查清单你是否在集成至少3个应用/服务?如果你只需要在2个应用之间进行通信,使用点对点集成会更简单。你是否真的需要在未来插入更多的应用?尽量避免架构中有多余之物。更好的方式是保持简单,然后在需要时再重新构架。你需要使用的通信协议类型是否多于1种?要是你只使用HTTP/Web服务或只使用JMS,那么你就无法从Mule提供的跨协议消息传递和转换中得到任何好处

2009-07-11 19:10:00 623

转载 理解 Java 的 GC 与 幽灵引用

理解 Java 的 GC 与 幽灵引用           Java 中一共有 4 种类型的引用 : StrongReference、 SoftReference、 WeakReference 以及 PhantomReference (传说中的幽灵引用 呵呵), 这 4 种类型的引用与 GC 有着密切的关系,  让我们逐一来看它们的定义和使用场景 :        1. Str

2009-06-14 17:19:00 477

原创 如何关闭 Windows Zip 文件夹功能

打开开始→运行,在弹出的对话框中输入:regsvr32 /u zipfldr.dll,回车后即可关闭ZIP文件夹功能。

2009-06-08 15:09:00 1070

原创 JavaScript 实例代码

JavaScript 实例代码(一).确认删除用法:   1. BtnDel.Attributes.Add("onclick","return confirm("+"确认删除?"+")");   2. linktempDelete.Attributes["onclick"]="javascript:return  confirm("+"确认删除?"+

2009-06-06 18:51:00 454

原创 正则表达式(JavaScript)

正则表达式(JavaScript)==============================================================================================制作表单时限制文本框输入内容的类型,用正则表达式限制文本框只能输入数字、小数点、英文字母、汉字等各类代码。     1.文本框只能输入数字代码(小数点也不能输入)

2009-06-06 17:57:00 435

原创 Windows 常用命令

Windows 常用命令辅助功能选项 access.cpl 添加硬件向导 hdwwiz.cpl 添加或删除程序 appwiz.cpl 管理工具 control admintools 自动更新 wuaucpl.cpl Bluetooth文件传送向导 fsquirt 计算器 calc 证书管理控制台 certmgr.msc 字符映射表 ch

2009-05-26 09:00:00 407

原创 采用Rome操作RSS

采用Rome操作RSS作者:曹祺Blog: http://blogs.sun.com/greysh Web: http://www.greysh.com  Email: Qi.Cao@Sun.com  本文链接:http://developers.sun.com.cn/blog/functionalca/entry

2009-05-26 08:57:00 1042

转载 GRUB 学习笔记

GRUB 学习笔记论坛上关于 GRUB 的贴子不少,但很多都是讲怎么安装而已。这篇文章是我通过翻译 info grub 并动手做实验总结出来的,增加了一些平常不太常见的内容。如有错误,敬请指正。同时由于 infogrub 的内容太多,对部分内容没有进行翻译,希望各位热心人能够补充!!!btw :为了方便大家阅读,还提供了 pdf 版本下载,就位于该层底部。

2009-04-18 17:18:00 1586

转载 使用 Eclipse 和 JavaFX 开发 Mashup 应用

使用 Eclipse 和 JavaFX 开发 Mashup 应用 开始之前Web 2.0的时代已经全面来临,Mashup 的应用越来越多,RIA(Rich InternetApplication)应用的呼声也越来越高,很多公司都纷纷推出了自己的 RIA 解决方案,比如 Adobe 公司的AIR,Microsoft 的 Silverlight 等。而 Java在互联网应用

2009-04-14 12:29:00 2576

转载 Modularizing Existing Web Application with OSGI

April 2009Discussion IntroductionThis article takes you through 12 easy steps to understand how OSGibundles can be used within an existing classic WAR application. Priorexpe

2009-04-08 09:43:00 821

转载 Java读写Excel简介

Java读写Excel简介作者:曹祺Email:Qi.Cao@Sun.ComBlog: http://blogs.sun.com/greysh 本文难度:入门 本文链接: http://developers.sun.com.cn/blog/functionalca/entry/java%E8%AF%BB%E5%86%99excel%E7%AE%80%E4%BB%8B  源代码下载: http://

2009-04-07 09:44:00 885

转载 VirtualBox 命令行启动

 VirtualBox 命令行启动通过命令行启动 VirtualBox,可以省去直接启动虚拟机显示图形界面的那部分资源。这种形式非常适用于在服务器上虚拟 n 台机器同时提供服务。使用 Host Interface 网络连接方式,可以让虚拟机的虚拟网卡获取和主机一样的网络地址等信息,从而可以直接对外提供服务。下面以 Solaris 10 主机上运行虚拟 Windows XP 为例。

2009-04-01 11:33:00 1359

转载 Ajax中文乱码问题及解决方法

 Ajax中文乱码问题及解决方法场景:使用jQuery的ajax方法提交ajax请求,代码如下:1$.ajax({2    dataType : json3    ,type : POST4    ,url : http://localhost/test/test.do5    ,data : {id: 1, type: 商品}6    

2009-03-30 20:21:00 511

转载 J2ME中实现多线程技术总结

J2ME中实现多线程技术总结 我们知道,在操作系统级别上软件的运行一般都是以进程为单位,而在每个进程的运行过程中允许同时并发执行多个不同线程,这就使得一个程序能同时执行不同的操作。使用多线程的目的是为了最大限度地利用计算机CPU资源。JAVA程序字节码最终是在JVM虚拟机下运行的,同一虚拟机进程中的不同操作都是通过多线程来运行的。在JAVA虚拟机中,线程常用有单线程和多线程,单线程

2009-03-21 22:50:00 408

转载 SQLServer和Oracle常用函数对比

SQLServer和Oracle常用函数对比数学函数   1.绝对值   S:select abs(-1) value   O:select abs(-1) value from dual   2.取整(大)   S:select ceiling(-1.001) value   O:select ceil(-1.001) value fr

2009-03-20 21:54:00 468

转载 GNU 和 UNIX 命令

 使用命令行 本节讨论初级管理(LPIC-1)考试 101 的主题 1.103.1 的内容。这个主题的权值是 5。 在本节中,学习以下主题: 使用命令行与 shell 和命令进行交互有效的命令和命令序列定义、引用和导出环境变量命令历史和编辑设施调用路径中和路径外的命令使用命令替换在目录树中递归地应用命令使用 man(手册)页了解命令 本节简要地介

2009-01-07 14:23:00 3140 3

PS技巧汇编[CHM]

热心网友搜集整理的Photoshop使用技巧文章,汇编成了可执行Windows帮助文件,下载后直接点击就可以打开阅读。

2010-08-18

通信技术概论_PDF

“华为技术与产品入门”系列丛书,深圳市华为技术有限公司编委会

2010-04-12

GRUB 2 中文指南

本文档为 Grub2 指南的简体中文版本,繁体由 elmaz 翻译,简体由[鱼漂(ipaddr)]在繁体的基础上修订。 本文档可免费转载及传播,但必须注明作者和出处,且不能用于商业用途。 本文档最新版本可在此找到:http://www.eit.name/blog/read.php?442 目前只有 Ubuntu9.10 在全新安装时会选择 Grub2,其它 Linux 发行版本还未采用 Grub2。网上有部分 Grub2 配置文档描述有误。

2009-12-10

The Java EE 5 Tutorial

The Java EE 5 Tutorial Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. Copyright 2007 Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, CA 95054 U.S.A. All rights reserved. Sun Microsystems, Inc. has intellectual property rights relating to technology embodied in the product that is described in this document. In particular, and without limitation, these intellectual property rights may include one or more U.S. patents or pending patent applications in the U.S. and in other countries. U.S. Government Rights – Commercial software. Government users are subject to the Sun Microsystems, Inc. standard license agreement and applicable provisions of the FAR and its supplements. This distribution may include materials developed by third parties. Parts of the product may be derived from Berkeley BSD systems, licensed from the University of California. UNIX is a registered trademark in the U.S. and other countries, exclusively licensed through X/Open Company, Ltd. Sun, Sun Microsystems, the Sun logo, the Solaris logo, the Java Coffee Cup logo, docs.sun.com, Java, and Solaris are trademarks or registered trademarks of Sun Microsystems, Inc. in the U.S. and other countries. All SPARC trademarks are used under license and are trademarks or registered trademarks of SPARC International, Inc. in the U.S. and other countries. Products bearing SPARC trademarks are based upon an architecture developed by Sun Microsystems, Inc. The OPEN LOOK and SunTM Graphical User Interface was developed by Sun Microsystems, Inc. for its users and licensees. Sun acknowledges the pioneering efforts of Xerox in researching and developing the concept of visual or graphical user interfaces for the computer industry. Sun holds a non-exclusive license from Xerox to the Xerox Graphical User Interface, which license also covers Sun's licensees who implement OPEN LOOK GUIs and otherwise comply with Sun's written license agreements. Products covered by and information contained in this publication are controlled by U.S. Export Control laws and may be subject to the export or import laws in other countries. Nuclear, missile, chemical or biological weapons or nuclear maritime end uses or end users, whether direct or indirect, are strictly prohibited. Export or reexport to countries subject to U.S. embargo or to entities identified on U.S. export exclusion lists, including, but not limited to, the denied persons and specially designated nationals lists is strictly prohibited. DOCUMENTATION IS PROVIDED “AS IS” AND ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. Copyright 2007 Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, CA 95054 U.S.A. Tous droits réservés. Sun Microsystems, Inc. détient les droits de propriété intellectuelle relatifs à la technologie incorporée dans le produit qui est décrit dans ce document. En particulier, et ce sans limitation, ces droits de propriété intellectuelle peuvent inclure un ou plusieurs brevets américains ou des applications de brevet en attente aux Etats-Unis et dans d'autres pays. Cette distribution peut comprendre des composants développés par des tierces personnes. Certaines composants de ce produit peuvent être dérivées du logiciel Berkeley BSD, licenciés par l'Université de Californie. UNIX est une marque déposée aux Etats-Unis et dans d'autres pays; elle est licenciée exclusivement par X/Open Company, Ltd. Sun, Sun Microsystems, le logo Sun, le logo Solaris, le logo Java Coffee Cup, docs.sun.com, Java et Solaris sont des marques de fabrique ou des marques déposées de Sun Microsystems, Inc. aux Etats-Unis et dans d'autres pays. Toutes les marques SPARC sont utilisées sous licence et sont des marques de fabrique ou des marques déposées de SPARC International, Inc. aux Etats-Unis et dans d'autres pays. Les produits portant les marques SPARC sont basés sur une architecture développée par Sun Microsystems, Inc. L'interface d'utilisation graphique OPEN LOOK et Sun a été développée par Sun Microsystems, Inc. pour ses utilisateurs et licenciés. Sun reconnaît les efforts de pionniers de Xerox pour la recherche et le développement du concept des interfaces d'utilisation visuelle ou graphique pour l'industrie de l'informatique. Sun détient une licence non exclusive de Xerox sur l'interface d'utilisation graphique Xerox, cette licence couvrant également les licenciés de Sun qui mettent en place l'interface d'utilisation graphique OPEN LOOK et qui, en outre, se conforment aux licences écrites de Sun. Les produits qui font l'objet de cette publication et les informations qu'il contient sont régis par la legislation américaine en matière de contrôle des exportations et peuvent être soumis au droit d'autres pays dans le domaine des exportations et importations. Les utilisations finales, ou utilisateurs finaux, pour des armes nucléaires, des missiles, des armes chimiques ou biologiques ou pour le nucléaire maritime, directement ou indirectement, sont strictement interdites. Les exportations ou réexportations vers des pays sous embargo des Etats-Unis, ou vers des entités figurant sur les listes d'exclusion d'exportation américaines, y compris, mais de manière non exclusive, la liste de personnes qui font objet d'un ordre de ne pas participer, d'une façon directe ou indirecte, aux exportations des produits ou des services qui sont régis par la legislation américaine en matière de contrôle des exportations et la liste de ressortissants spécifiquement designés, sont rigoureusement interdites. LA DOCUMENTATION EST FOURNIE "EN L'ETAT" ET TOUTES AUTRES CONDITIONS, DECLARATIONS ET GARANTIES EXPRESSES OU TACITES SONT FORMELLEMENT EXCLUES, DANS LA MESURE AUTORISEE PAR LA LOI APPLICABLE, Y COMPRIS NOTAMMENT TOUTE GARANTIE IMPLICITE RELATIVE A LA QUALITE MARCHANDE, A L'APTITUDE A UNE UTILISATION PARTICULIERE OU A L'ABSENCE DE CONTREFACON.

2009-12-10

Spring Security 2.0.x完全中文参考文档

Spring Security 参考文档 2.0.x @author Leo.Nature

2009-05-13

CVS 中文手册 chm

简短目录 * CVS—协作版本系统 v1.12.13 * 1 概述 * 2 仓库 * 3 使用 CVS 开始一个项目 * 4 修订版 * 5 分支与合并 * 6 递归行为 * 7 添加、删除和重命名文件和目录 * 8 查看历史 * 9 处理二进制文件 * 10 多人开发 * 11 版本管理 * 12 关键字替换 * 13 跟踪第三方代码 * 14 构建系统如何与 CVS 交互操作 * 15 特殊文件 * 附录 A CVS 命令指南 * 附录 B CVS 命令快速参考 * 附录 C 管理文件参考手册 * 附录 D 影响 CVS 的全部环境变量 * 附录 E CVS 版本之间的兼容性 * 附录 F 修理故障 * 附录 G 荣誉 * 附录 H CVS 或本手册中的 bug * 索引

2009-05-11

Google 搜索引擎优化入门指南

Google 搜索引擎优化入门指南 作者:Google 网站管理员中心 翻译:个篱

2009-03-23

Hibernate Reference Documentation 3.3.1

Hibernate Reference Documentation 3.3.1 HIBERNATE - Relational Persistence for Idiomatic Java Copyright © 2004 Red Hat Middleware, LLC. Legal Notice 1801 Varsity Drive Raleigh, NC27606-2072USA Phone: +1 919 754 3700 Phone: 888 733 4281 Fax: +1 919 754 3701 PO Box 13588Research Triangle Park, NC27709USA Copyright © 2007 by Red Hat, Inc. This copyrighted material is made available to anyone wishing to use, modify, copy, or redistribute it subject to the terms and conditions of the GNU Lesser General Public License [http://www.gnu.org/licenses/lgpl-2.1.html], as published by the Free Software Foundation. Red Hat and the Red Hat "Shadow Man" logo are registered trademarks of Red Hat, Inc. in the United States and other countries. All other trademarks referenced herein are the property of their respective owners. The GPG fingerprint of the security@redhat.com key is: CA 20 86 86 2B D6 9D FC 65 F6 EC C4 21 91 80 CD DB 42 A6 0E

2009-03-19

Mastering Enterprise JavaBeans 3.0

Mastering Enterprise JavaBeansTM 3.0 Published by Wiley Publishing, Inc. 10475 Crosspoint Boulevard Indianapolis, IN 46256 www.wiley.com Copyright © 2006 by Wiley Publishing, Inc., Indianapolis, Indiana Published simultaneously in Canada ISBN-13: 978-0-471-78541-5 ISBN-10: 0-471-78541-5 Manufactured in the United States of America 10 9 8 7 6 5 4 3 2 1 1B/SS/QW/QW/IN

2009-03-14

Fedora-10-Installation-Configration-FAQ-Update-1

Fedora-10-Installation-Configration-FAQ-Update-1

2009-03-14

Fedora-10-Installaion_Configuration-FAQ

Fedora-10-Installaion_Configuration-FAQ(中文版)

2009-03-14

EJB 3 In Action - Manning

EJB 3 In Action - Manning MEAP Edition Manning Early Access Program Copyright 2006 Manning Publications For more information on this and other Manning titles go to www.manning.com

2009-03-14

Oracle® Database Quick Installation Guide 11g Release 1 (11.1) for Microsoft Windows (32-Bit)

Oracle® Database Quick Installation Guide 11g Release 1 (11.1) for Microsoft Windows (32-Bit) B32301-04 January 2009

2009-03-13

Oracle® Database Installation Guide 11g Release 1 (11.1) for Microsoft Windows

Oracle® Database Installation Guide 11g Release 1 (11.1) for Microsoft Windows B32006-06 February 2009

2009-03-13

JavaServer Faces in Action

JavaServer Faces in Action KITO D. MANN ISBN 1-932394-11-7

2009-03-10

Grails 入门指南

InfoQ企业软件开发丛书 [美]Jason Rudolph 著 陈俊 林仪明 彭青 吴仕橹 译

2009-03-10

JBoss EJB 3.0 实例教程--企业应用开发核心技术(黎活明)

JBoss EJB 3.0 实例教程--企业应用开发核心技术(黎活明)

2009-03-10

Enterprise JavaBeans 3.0 5th Edition - O'Reilly

Enterprise JavaBeans, 3.0 By Bill Burke, Richard Monson-Haefel ............................................... Publisher: O'Reilly Pub Date: May 16, 2006 Print ISBN-10: 0-596-00978-X Pages: 760 英文/CHM

2009-03-09

Ruby用户指南+RGSS入门教程+Programming Ruby+Ruby参考手册(中文)

Ruby相关学习文档,中文版CHM Ruby用户指南 RGSS入门教程 Programming Ruby Ruby参考手册

2009-02-07

PHP手册(中文chm)

Mehdi Achour Friedhelm Betz Antony Dovgal Nuno Lopes Philip Olson Georg Richter Damien Seguy Jakub Vrana 编辑 Gabor Hojtsy 中文文档翻译小组 王远之 肖理达 肖盛文 黄啸宇 宋琪 陈伯乐 刘铭 崔岩 此版本由PHP5研究室(phpv.net)编译于2005年11月7日

2008-12-29

Enterprise_Architect教程[中文PDF]

网络上收集的Enterprise Architect以及UML相关的文章

2012-10-29

Power Designer 16.1.0.3637 crack

Power Designer 16.1.0.3637 最新版,仅破解,安装程序请到sybase网站下载。

2012-02-23

你的Scrum检查列表 - InfoQ企业软件丛书【中文PDF】

本书包含的检查列表有: 通用会议规则 估算会议 Sprint规划会议——I、II 每日Scrum例会 任务板、流、图、角色和产出物(Artefacts) Sprint复审会议 Sprint回顾会议 企业级Scrum 扩展Sprint规划会议——I、II 产品负责人每日例会 Scrum of Scrums 32 页, 出版方: bor!sgloger Wien. New York. Recife. Baden-Baden. ISBN-13: 978-3-000-32112-2

2011-04-26

Google搜索引擎优化初学者指南【中文PDF】

Google搜索引擎优化初学者指南【中文PDF】

2011-04-08

Citrix XenApp 5 for Windows Server 2008 R2管理员手册【中文PDF】

Citrix XenApp 5 for Windows Server 2008 R2管理员手册【中文PDF】

2011-04-03

Citrix XenApp 5.0 FP2 安装配置 for Windows Server 2003 R2【中文PDF】

Citrix 入门教程系列——XenApp 5.0 FP2 for Windows Server 2003 R2。

2011-04-03

JDK 7 Reference Card

JDK 7 Reference Card是一个参考指南,包含对Java 7所有新改进项目的总结,如所有新增的功能,增强和修改的JSR等。 Java SE 7规范(又名JDK 7)开发进展很顺利,计划于2011年夏天发布最终版本。为了让开发者能够方便快速地一览JDK 7中的所有重要元素,Developer.com发表了JDK 7 Reference Card,为开发者提供参考。 JDK 7 Reference Card包括的重点信息如下: ·Newly included JSRs (including NIO.2, The Da Vinci Project and Project Coin) ·Changed JSRs in maintenance reviews (including JAXP, JAXB and JAX-WS) ·Enhanced JSRs (including JLS and the JVM spec) ·Smaller enhancements (including GC and concurrency) ·JSRs deferred to JDK 8 or later (including closures) JDK 7 Reference Card将所有信息浓缩成在一页文档上,为PDF格式。

2011-03-31

Full Circle中文第44期 2010年12月

Full Circle中文第44期正式发布了,本期主要内容有: Unetbootin评测 Python编程——第18部分 Linux实验室 使用wubi进行备份 TOP5 BT下载软件。

2011-03-29

常用Java Web应用软件 (LNMJ,LAMJ)安装

本文主要总结了在Ubuntu10下常用Java Web应用软件的安装,特别是LNMJ Web(Linux+Nginx+Mysql+Java Tomcat)架构和LAMJ Web(Linux+Apache+Mysql+Java Tomcat)架构下的软件安装。为进一步配置和实现LNMJ和LAMJ架构(负载均衡与集中式Memcached集群)进行前期准备。本文记录了安装过程经常出现的错误,并提供了解决办法,具有很好的实用性,是居家旅行必备之良品。 主要内容有: VirtualBox4.0的安装和配置 包括VirtualBox下网络环境的配置,和主机文件的共享,主机和虚拟机剪贴板共享等内容。 http://peterwei.javaeye.com/blog/968815 Ubuntu10下JDK1.6安装 http://peterwei.javaeye.com/blog/968758 Ubuntu10下Tomcat7安装 http://peterwei.javaeye.com/blog/968774 Ubuntu10下Eclipse3.6安装 http://peterwei.javaeye.com/blog/975129 Ubuntu10下Nginx-0.8.54安装 http://peterwei.javaeye.com/blog/969991 Ubuntu10下Apache-2.2安装 http://peterwei.javaeye.com/blog/975122 Ubuntu10下Mysql-5.1.56安装 http://peterwei.javaeye.com/blog/976422 Ubuntu10下Memcached-1.4.5安装 http://peterwei.javaeye.com/blog/974445 Ubuntu10下SSH2协议安装 http://peterwei.javaeye.com/blog/976944 Ubuntu10下Subversion安装 http://peterwei.javaeye.com/blog/976916 Ubuntu10下中文输入法安装 http://peterwei.javaeye.com/blog/976908 Ubuntu Linux实用命令 http://peterwei.javaeye.com/blog/976950 当然,最后也提供了PDF格式的附件统一下载,方便大家查看。下载后觉得不错的,不要吝啬你的掌声。

2011-03-29

深入理解个JEE服务器Web层集群原理

深入理解个JEE服务器Web层集群原理——InfoQ企业软件开发丛书【中文PDF】

2011-03-27

Git Community Book 中文版

Git Community Book 中文版

2011-03-24

敏捷实践实施模式—技术实践组合[InfoQ丛书][中文][PDF]

敏捷实践实施模式—技术实践组合[InfoQ丛书][中文][PDF]

2011-01-26

Balsamiq Mockups 注册码

Balsamiq Mockups 注册码 经过测试 1.8.12 版本可用

2010-09-16

项目管理修炼之道-精选版-InfoQ [中文][PDF]

项目管理修炼之道-精选版-InfoQ [中文][PDF]

2010-09-12

Java Programming with CORBA 3rd Edition [PDF] [EN]

Java Programming with CORBA 3rd Edition [PDF] [EN]

2010-09-03

Android Programming [en] [pdf]

Android Programming with Tutorials from the anddev.org-Community. written by Nicolas Gramlich Check for the latest version on http://andbook.anddev.org

2010-08-29

Fireworks 8 官方中文教程 [PDF]

Fireworks 8 官方中文教程 [PDF]

2010-08-25

java web 标签大全[中文CHM]

java web 标签大全[中文CHM] 免责声明: 1/ 部分内容来自网络,如果有侵犯你权利请你和我们联系. mail: findhappy7@gmail.com 2/另外不能保证内容的正确性,只供参考学习 版权声明: 部分内容由我们整理创作,所有版权归我们以及原文作者所有,谢绝第三方网站或软件或资源整理对本站资源的引用或转载。 本手册收集了: 1、struts 1 各类型标签 2、struts 2 标签 3、jstl 各类型标签 4、spring 标签 5、jsf标签 6、jsp标签、语法 7、freemarker语法 8、velocity语法 9、ajax常用函数 10、常用js表单检测函数 11、常用js函数 12、多功能jsp编辑器(eclipse插件)

2010-08-19

JacORB 1.4 编程指南[中文PDF]

JacORB 1.4 编程指南[中文PDF] 中文翻译:hlstudio(hlstudio@sina.com) ,cocia(cocia@163.com)(第 7 章) 校稿:allen(allen@huihoo.com),fat1(xwcheng@sina.com) 2002.08

2010-08-19

JacORB 2.3 Programming Guide

JacORB 2.3 Programming Guide The JacORB Team February 17, 2007

2010-08-19

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除