之前的项目还是有些问题的,例如
1 只能有一个连接器,只能处理http请求,无法添加另外一个连接器用来处理https。
2 对容器的关闭只能是粗暴的关闭Bootstrap。
服务器组件
org.apache.catalina.Server接口的实例用来表示Catalina的整个servlet引擎。
我们使用Server就是因为,它用一种优雅的方式来启动/关闭整个系统。
下面是启动和...
分类:
其他好文 时间:
2014-12-03 17:12:44
阅读次数:
200
一.CAP数据一致性(C),等同于所有节点访问同一份最新的数据副本;对数据更新具备高可用性(A);能容忍网络分区(P)。概念: 必须注意的是,P:Partition Tolerance 指的是 The system works well despite physical network partit...
分类:
其他好文 时间:
2014-12-03 16:54:03
阅读次数:
176
Universal Document Converter works as a virtual printer and can save any document in the PDF, JPEG, TIFF, or PNG format. If you are a software developer, you can control the settings using COM-inte...
分类:
其他好文 时间:
2014-11-30 20:14:29
阅读次数:
245
0、servlet容器是如何工作的 servlet容器是一个复杂的系统,但是,它有3个基本任务,对每个请求,servlet容器会为其完成以下三个操作: 1:创建一个request对象,用可能会在Servlet中使用到的信息填充该request对象,如参数、头、cookie、查询字符串、URI...
分类:
其他好文 时间:
2014-11-30 16:40:14
阅读次数:
105
Host
Host是Context的父容器。如果想在一个tomcat上部署多个context就需要使用Host了。上下文容器的父容器是主机,但是可能有一些其它实现,没有必要的时候也可以忽略。不过在实践中,即使是一个Context,我们也使用了Host,为什么?后面我们再说。
Host是个接口,里面有个map方法比较重要
/**
* Return the Context th...
分类:
其他好文 时间:
2014-11-27 12:45:07
阅读次数:
208
If you are a Windows Users:? This is a common error when you use XAMPP since LDAP is not enabled by default. You can follow this steps to make sure LDAP works in your XAMPP [Your Drive]:\xampp\ph...
分类:
其他好文 时间:
2014-11-26 14:36:57
阅读次数:
177
Password type input with autocomplete enabledThe autocomplete attribute works with the following types: text, search, url, tel, email, password, date....
分类:
Web程序 时间:
2014-11-26 10:57:37
阅读次数:
183
The code for this tutorial can be downloaded here:threadworms.pyor fromGitHub. This code works withPython 3 or Python 2, and you needPygameinstalled a...
分类:
编程语言 时间:
2014-11-25 12:12:02
阅读次数:
320
对重载的支持
tomcat里容器对重载功能的支持是依靠Load的(在目前就是WebLoader)。当在绑定载入器的容器时
public void setContainer(Container container) {
...
// Register with the new Container (if any)
if ((th...
分类:
其他好文 时间:
2014-11-24 13:34:41
阅读次数:
177
??
架构师 必备资料
Apache 使用指南与实现原理.pdf:
http://www.t00y.com/file/68570832
How Tomcat Works中文版.pdf:
http://www.t00y.com/file/68572394
Java开发技术 在架构中体验设计模式和算法之美 高清扫描完整PDF版.pdf:
http://www.t00y....
分类:
其他好文 时间:
2014-11-23 14:32:21
阅读次数:
311