自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(10)
  • 资源 (44)
  • 收藏
  • 关注

原创 根据名字(id)自动装配和根据类型(class)自动装配

根据名字(id)自动装配在“约定优于配置”的前提下,可以使用这个方法。 如果在一个类Bean1中对其他类的依赖使用的名称和配置文件中的id一致,那么就可以在Bean1的配置文件中不写相应的配置。 这是因为名称和id一致,那么spring还是可以使用getter方法得当相应的对象。使用: 在配置文件中还是加入 default-autowire="byName" 根据类型(

2009-06-26 17:12:00 1597

原创 Singleton与Prototype

Scope可以取值为Singleton和Prototype。Singleton即使是在多次使用getbean()方法,返回的是相同的实例。而prototype则返回不同的实例。

2009-06-26 17:03:00 608

原创 Path与Classpath 参考:Java JDK 5.0学习笔记第二章

这里有如何设置path和classpath的详细信息。  当我们在Windows命令行中使用Java时,我们会发现在任何一个地方输入java,系统都会有反应,尽管在那个地方时没有java.exe的。系统是怎么做到的呢?其实很简单,答案就在系统的环境变量中的path属性。 这个过程是这样的,系统首先在当前目录下查找java.exe,若没有,它会找系统变量下的path,若这个path中有

2009-06-20 13:41:00 722

原创 从Tomcat的server.xml文件看Tomcat的组件结构

server.xml的基本结构如下: 顶层类元素:可以包括多个Service 顶层类元素:可以包括一个Engine,多个Connector。 连接器元素:代表通信接口 容器类元素:为特定的Service组件处理客户请求,可以包含多个Host

2009-06-20 11:48:00 1701 3

原创 有关ActionMapping

ActionMapping的一些属性及其用法 理解ActionMappingpathtype 通过解析request的URL,获得用户请求的路径,然后与这个path值比较,若匹配,则通过type中的Action类来 进行相应的处理。name 如果用户创建了ActionForm,则通过这个name值去匹配,从而获得相应的ActionForm。s

2009-06-19 23:17:00 848

原创 关于ActionForward

ActionForward的使用ActionForward有全局和局部之分,寻找顺序当然是先局部后全局。全局ActionForward示例如下:                             redirect属性是指是否进行重定向。默认是false,即默认是转向而不重定向。转发的特点是共享request,并且地址栏不会改变,因为转发

2009-06-19 19:43:00 2893 3

转载 request.getParameter() 和request.getAttribute()区别 转自:上帝的笔记本:http://linweihan.javaeye.com/blog/122054

request.getParameter() 和request.getAttribute() request.getAttribute()取得是通过容器的实现来取得通过类似post,get等方式传入的数据,request.setAttribute()和getAttribute()只是在web容器内部流转,仅仅是请求处理阶段,返回类型Object。                        

2009-06-19 17:42:00 1101

原创 JSTL(JavaServer Pages Standard Tag Library)初步

我对JSTL的认识 struts也有自己的标签库,与JSTL功能差不多,但由于要依赖struts框架,所以不如JSTL用的多,JSTL是sun开发的,只要支持Servlet2.4规范就可以使用。JSTL是和EL一起使用的,EL主要实现了取数据和表达式计算的功能,那JSTL的主要功能就是运算流程控制了。 JSTL的内容 JSTL包括循环标签,流程控制标签,操作XML文档的标签,格式化

2009-06-17 15:47:00 916

原创 EL(Expression Language)初步

EL正如其名,是名副其实的”表达式语言“ 我觉得表达式就是数据与算子的有序排列,其内容为算子对变量进行的操作。这样说来,表达式的基本功能可以概述为:取得数据。这是EL表达式的基本功能,通过${}可以很方便地从Scope(page, request, session, application)中拿到数据。可以不标明Scope,会自动去找。如果有重复,也可以用添加相应的Scope前缀去找,

2009-06-17 14:55:00 822

原创 struts1.x的简单流程

开发流程:首先当然是要将相关的包导入到工程中,在MyEclipse中,将这些文件拷贝到WebRoot/WEB-INF/lib下 就可以了,在Eclipse中似乎不行,还是要在工程属性中添加这些类库。一个好的方法是将struts的这些jar包放到自己定义的一个库中,从而可以使得操作方便且不易出错。                                                

2009-06-16 19:33:00 966

The Life and Work of John Forbes Nash Jr

UCBerkerly的一门课程的阅读材料,课程网址:http://www.eecs.berkeley.edu/~christos/classics/

2009-12-20

Recursive Functions of Symbolic Expressions and Their Computation by Machine, Part I

UCBerkerly的一门课程的阅读材料,课程网址:http://www.eecs.berkeley.edu/~christos/classics/

2009-12-20

NEW POLYNOMIAL-TIME ALGORITHM.pdf

UCBerkerly的一门课程的阅读材料,课程网址:http://www.eecs.berkeley.edu/~christos/classics/

2009-12-20

REMINISCENCES ABOUT THE ORIGINS OF LINEAR PROGRAMMING.pdf

UCBerkerly的一门课程的阅读材料,课程网址:http://www.eecs.berkeley.edu/~christos/classics/

2009-12-20

The Turing Test paper and von Neumann’s EDVAC report..pdf

UCBerkerly的一门课程的阅读材料,课程网址:http://www.eecs.berkeley.edu/~christos/classics/

2009-12-20

Antikythera Mechanism3.pdf

UCBerkerly的一门课程的阅读材料,课程网址:http://www.eecs.berkeley.edu/~christos/classics/ 这篇文章有三部分,这是第三部分

2009-12-20

Antikythera Mechanism2.pdf

UCBerkerly的一门课程的阅读材料,课程网址:http://www.eecs.berkeley.edu/~christos/classics/ 这篇文章有三部分,这是第二部分

2009-12-20

Antikythera Mechanism1.pdf

UCBerkerly的一门课程的阅读材料,课程网址:http://www.eecs.berkeley.edu/~christos/classics/ 这篇文章有三部分,这是第一部分

2009-12-20

New Directions in Cryptography, Diffie and Hellman

UCBerkerly的一门课程的阅读材料,课程网址:http://www.eecs.berkeley.edu/~christos/classics/

2009-12-20

Godel's Theorem and the Birth of the Computer-goedel.pdf

UCBerkerly的一门课程的阅读材料,课程网址:http://www.eecs.berkeley.edu/~christos/classics/

2009-12-20

Jonathan von Neumann and EDVAC

UCBerkerly的一门课程的阅读材料,课程网址:http://www.eecs.berkeley.edu/~christos/classics/ 里面的内容我还没看,不过以前听老师讲过这篇文章,值得一读

2009-12-20

《Simulating Physics with Computers》

费曼的《Simulating Physics with Computers》,量子计算机这个概念应该就是从这篇文章提出的,UCBerkerly的一门课程的阅读材料,课程网址:http://www.eecs.berkeley.edu/~christos/classics/

2009-12-20

Pro Apache Struts with ajax

Pro Apache Struts with ajax,2006年那版,英文版,pdf格式,质量不错,非扫描。Apress出的。

2009-12-11

ibatis tutorials

ibatis的快速入门材料,英文版的,从官网上下的,官网上有中文版

2009-12-07

ibatis developer guide

从官网上下载的iBATIS developer guide,英文版的,官网上还有中文版的

2009-12-07

head first java second edition english part2

head first java第二版,非扫描pdf版。从http://www.51leifeng.net/上下载的,赞http://www.51leifeng.net/(我要雷锋) 第二部分

2009-12-02

head first java second edition (english) part1

head first java第二版,非扫描pdf版。从http://www.51leifeng.net/上下载的,赞http://www.51leifeng.net/(我要雷锋)

2009-12-02

Apress - Pro Hadoop.pdf

Pro Hadoop的英文原版,很清晰,并且有目录。 这本书我还没看,不过这是有关hadoop的不多的专著

2009-10-28

MRGIS: A MapReduce-Enabled High PerformanceWorkflow System for GIS

一篇论文,英文的。关于mapreduce技术在GIS中应用的一篇文章。貌似是华人写的,不过学校是国外的。

2009-09-01

《JavaScript语言精髓与编程实践》精简版

中文的,从infoq上下载的。是免费的在线版本,可以到网上去买正版的完整版。一共53页,主要讲了命令式语言,函数式语言和动态语言的东西。

2009-09-01

The Swift Java Compiler: Design and Implementation(英文)

一篇关于java编译器的论文 作者:Daniel J. Scales Keith H. Randall Sanjay Ghemawat Jeff Dean

2009-09-01

深入浅出struts2(infoq免费版,中文版)

深入浅出struts2(infoq免费版),95页。是个免费在线版本,可以到http://infoq.com/cn/minibooks/starting-struts2查看具体信息

2009-09-01

NetBeans IDE 6.1 快捷键和代码模板(中文版)

NetBeans IDE 6.1 快捷键和代码模板,2页纸,内容很实用,适合常用netbeans做开发的程序员

2009-09-01

Sun云计算白皮书(中文版)

Sun的官网上下载的一份关于云计算的白皮书,中文版的

2009-09-01

tomcat启动的时序图

这是一份tomcat5启动时的时序图,对于理解tomcat的结构很有帮助

2009-09-01

GUIDE to USING OPEN-SOURCE SOFTWARE to DEVELOP WEB APPLICATIONS

SUN的一份使用开源软件开发网络应用的白皮书

2009-09-01

Structure and Interpretation of Computer Programs(2nd edition)

这是MIT的一门经典课程所用的课本,课程视频是可以下载的,尽管那时1986年的视频,但由于这门课不是,关于技术细节的,因此不受什么影响

2009-07-28

Foundations of Rapid Mashup Development

Foundations of Rapid Mashup Development

2009-02-12

web mappingn illustrated

With the help of the Internet and accompanying tools, creating and publishing online maps has become easier and rich with options. A city guide web site can use maps to show the location of restaurants, museums, and art venues. A business can post a map for reaching its offices. The state government can present a map showing average income by area. Developers who want to publish maps on the web often discover that commercial tools cost too much and hunting down the free tools scattered across Internet can use up too much of your time and resources. Web Mapping Illustrated shows you how to create maps, even interactive maps, with free tools, including MapServer, OpenEV, GDAL/OGR, and PostGIS. It also explains how to find, collect, understand, use, and share mapping data, both over the traditional Web and using OGC-standard services like WFS and WMS. Mapping is a growing field that goes beyond collecting and analyzing GIS data. Web Mapping Illustrated shows how to combine free geographic data, GPS, and data management tools into one resource for your mapping information needs so you don't have to lose your way while searching for it. Remember the fun you had exploring the world with maps? Experience the fun again with Web Mapping Illustrated. This book will take you on a direct route to creating valuable

2008-10-09

.Professional.Android 4 Application Development

清晰英文版的pdf,不是扫描版。有书签来标记章节。

2013-09-24

h264的结构说明,英文版

有关h.264的一个很不错的ppt,对于理解h264代码有帮助。它分不同层次地对h264的数据流和运算流进行了解释,可以方便地对照编解码器的源代码来看。

2011-11-15

Using OpenMP

MIT出版的经典OpenMP教程,英文版,pdf

2011-10-31

jubincn博文“GDB简单教程”中的示例程序

jubincn博文“GDB简单教程”中的示例程序,http://blog.csdn.net/jubincn/article/details/6774524

2011-09-14

算法导论第三版 英文版

Before there were computers, there were algorithms. But now that there are com- puters, there are even more algorithms, and algorithms lie at the heart of computing. This book provides a comprehensive introduction to the modern study of com- puter algorithms. It presents many algorithms and covers them in considerable depth, yet makes their design and analysis accessible to all levels of readers. We have tried to keep explanations elementary without sacrificing depth of coverage or mathematical rigor. Each chapter presents an algorithm, a design technique, an application area, or a related topic. Algorithms are described in English and in a pseudocode designed to be readable by anyone who has done a little programming. The book contains 244 figures—many with multiple parts—illustrating how the algorithms work. Since we emphasize efficiency as a design criterion, we include careful analyses of the running times of all our algorithms.

2010-12-01

GIS:A Computing Perspective 第一版 chm格式

Worboys的经典著作,不过是第一版的。我一直想找第二版的,但没找到,哪位温拿如果有的话,麻烦分享下。

2010-07-13

Introduction to Spring2. and JPA

IBM Developerworks 上的文章,英文版本

2010-05-07

Apress.Beginning.Apache.Struts.From.Novice.to.Professional.Feb.2006.pdf

struts从入门到精通的英文版,我还没看,也不清楚struts的版本,但这份文档的质量不错

2009-12-18

Vi-iMproved.pdf

有关vim的一本pdf书,英文的,500多页,喜欢vim的同学可以下载看下

2009-12-18

Linux必学的60个命令v1.0.1.pdf

70多页的一个pdf文档,里面列举了常用的Linux命令,可以做参考手册用

2009-12-18

Berkeley计算机经典阅读材料

从Berkeley上下载的他们一门计算机经典阅读材料课的资料,里面的内容都是英文的论文,包括哥德尔的,纳什的等。强烈建议喜欢计算机科学的同学看一下。

2009-12-18

空空如也

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

TA关注的人

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