摘要: 转载:http://blog.sina.com.cn/s/blog_6448959f0100kct7.htmlhttp://www.cnblogs.com/gw811/archive/2012/09/07/2675294.html概述:通过两个例子介绍了servlet多线程机制,第一个例子较简单的说... 阅读全文
posted @ 2015-10-20 22:23 codeplayplus 阅读(379) 评论(0) 推荐(0) 编辑
摘要: 警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.j2ee.server:ServletPro' did not find a match 阅读全文
posted @ 2015-10-20 10:31 codeplayplus 阅读(1665) 评论(0) 推荐(0) 编辑
摘要: 原文:http://tomcat.apache.org/tomcat-7.0-doc/deployer-howto.html Introduction(介绍) Deployment is the term used for the process of installing a web applic 阅读全文
posted @ 2015-10-18 12:39 codeplayplus 阅读(933) 评论(0) 推荐(0) 编辑
摘要: 启动tomcat,在浏览器中输入http://localhost:8080/web_kevin/hello.html,发生的事情如下: 1.浏览器解析主机名,即解析localhost。浏览器首先会到本地的hosts(路径为C:\Windows\System32\drivers\etc)文件中查询有没 阅读全文
posted @ 2015-10-17 21:27 codeplayplus 阅读(741) 评论(0) 推荐(0) 编辑
摘要: 转自:http://blog.csdn.net/zoohouse/article/details/7552594概述:“刷新”是在你现有页面的基础上,检查网页是否有更新的内容。在检查时,会保留之前的一些变量的值,因此有可能会造成刷新后网页出现错误,或者打不开的情况;“转到”和在地址栏回车,则相当于你... 阅读全文
posted @ 2015-09-19 20:13 codeplayplus 阅读(5570) 评论(1) 推荐(3) 编辑
摘要: 首先我们需要配置一下host文件,路径为C:\Windows\System32\drivers\etc\hosts,该文件是ip地址和域名的映射文件,在该文件中添加如下代码: 127.0.0.1 www.kevin.com 这样当我们在浏览器中输入http://www.kevin.com时,找到的主 阅读全文
posted @ 2015-09-19 19:55 codeplayplus 阅读(616) 评论(0) 推荐(0) 编辑
摘要: 方式一:配置server.xml文件 配置虚拟目录要在tomcat的conf目录下的server.xml的<Host>节点添加如下代码: 其中各参数的含义如下: 配置的虚拟目录中的文件如下: 启动tomcat,则浏览器中输入http://localhost:8080/web_virtual_dire 阅读全文
posted @ 2015-09-19 19:49 codeplayplus 阅读(10799) 评论(0) 推荐(1) 编辑
摘要: 简述:VMware虚拟网络概述、实现虚拟网络上网 Part0 子网掩码、DHCP、NAT,这些点请自行百度,百度百科讲的很清晰。 Part1 转载:本文出自 “王春海的博客” 博客http://wangchunhai.blog.51cto.com/225186/381225 注:在转载文章上对于每一种网络都增加了例子 3.1 VMware虚拟网络概述 VMware Workstation(或VMw... 阅读全文
posted @ 2015-07-28 20:37 codeplayplus 阅读(716) 评论(0) 推荐(0) 编辑
摘要: 1.下载安装包官网下载.rpm格式安装包,需要下面两个文件: MySQL-server-5.0.26-0.i386.rpm MySQL-client-5.0.26-0.i386.rpm 注:官网下载时,如果选择linux generic版本,而网页没有跳转到相应的安装包下载页面,请到镜像网站下载,可百度搜狐镜像. 2.检查是否已经安装[root@tianxia ~]# rpm -qa | g... 阅读全文
posted @ 2015-07-27 09:27 codeplayplus 阅读(404) 评论(0) 推荐(0) 编辑
摘要: 简述:排序算法,参见http://www.cplusplus.com/reference/algorithm/?kw=algorithm待解决问题:各种排序算法的实现/*template void sort (RandomAccessIterator first, RandomAccessItera... 阅读全文
posted @ 2015-07-19 23:02 codeplayplus 阅读(226) 评论(0) 推荐(0) 编辑