Skip to content

Latest commit

 

History

History
119 lines (117 loc) · 8.51 KB

SUMMARY.md

File metadata and controls

119 lines (117 loc) · 8.51 KB

Summary

This is the summary of my book.

  • 前言
  • 总览
    • [什么是 Servlet](docs/Overview/1.1 What is a Servlet.md)
    • [什么是 Servlet 容器](docs/Overview/1.2 What is a Servlet Container.md)
    • [一个例子](docs/Overview/1.3 An Example.md)
    • [Servlet 与其他技术的对比](docs/Overview/1.4 Comparing Servlets with Other Technologies.md)
    • [与 Java EE 的关系](docs/Overview/1.5 Relationship to Java Platform, Enterprise Edition.md)
    • [与 Servlet 2.5 规范的兼容性](docs/Overview/1.6 Compatibility with Java Servlet Specification Version.md)
  • [Servlet 接口](docs/The Servlet Interface/2. The Servlet Interface.md)
    • [请求处理方法](docs/The Servlet Interface/2.1 Request Handling Methods.md)
    • [实例数量](docs/The Servlet Interface/2.2 Number of Instances.md)
    • [Servlet 生命周期](docs/The Servlet Interface/2.3 Servlet Life Cycle.md)
  • [请求](docs/The Request/3. The Request.md)
    • [HTTP 协议参数](docs/The Request/3.1 HTTP Protocol Parameters.md)
    • [文件上传](docs/The Request/3.2 File upload.md)
    • [属性](docs/The Request/3.3 Attributes.md)
    • [头](docs/The Request/3.4 Headers.md)
    • [请求路径元素](docs/The Request/3.5 Request Path Elements.md)
    • [路径转换方法](docs/The Request/3.6 Path Translation Methods.md)
    • [非阻塞 IO](docs/The Request/3.7 Non Blocking IO.md)
    • [Cookie](docs/The Request/3.8 Cookies.md)
    • [SSL 属性](docs/The Request/3.9 SSL Attributes.md)
    • [国际化](docs/The Request/3.10 Internationalization.md)
    • [请求数据编码](docs/The Request/3.11 Request data encoding.md)
    • [请求对象生命周期](docs/The Request/3.12 Lifetime of the Request Object.md)
  • Servlet 上下文
    • [ServletContext 接口介绍](docs/Servlet Context/4.1 Introduction to the ServletContext Interface.md)
    • [ServletContext 接口作用域](docs/Servlet Context/4.2 Scope of a ServletContext Interface.md)
    • [初始化参数](docs/Servlet Context/4.3 Initialization Parameters.md)
    • [配置方法](docs/Servlet Context/4.4 Configuration methods.md)
    • [上下文属性](docs/Servlet Context/4.5 Context Attributes.md)
    • [资源](docs/Servlet Context/4.6 Resources.md)
    • [多主机和 Servlet 上下文](docs/Servlet Context/4.7 Multiple Hosts and Servlet Contexts.md)
    • [重载注意事项](docs/Servlet Context/4.8 Reloading Considerations.md)
  • [响应](docs/The Response/5 The Response.md)
    • [缓冲](docs/The Response/5.1 Buffering.md)
    • [头](docs/The Response/5.2 Headers.md)
    • [非阻塞 IO](docs/The Response/5.3 Non Blocking IO.md)
    • [简便方法](docs/The Response/5.4 Convenience Methods.md)
    • [国际化](docs/The Response/5.5 Internationalization.md)
    • [结束响应对象](docs/The Response/5.6 Closure of Response Object.md)
    • [响应对象的生命周期](docs/The Response/5.7 Lifetime of the Response Object.md)
  • [过滤](docs/Filtering/6. Filtering.md)
    • [什么是过滤器](docs/Filtering/6.1 What is a filter.md)
    • [主要概念](docs/Filtering/6.2 Main Concepts.md)
  • [会话](docs/Sessions/7. Sessions.md)
    • [会话跟踪机制](docs/Sessions/7.1 Session Tracking Mechanisms.md)
    • [创建会话](docs/Sessions/7.2 Creating a Session.md)
    • [会话范围](docs/Sessions/7.3 Session Scope.md)
    • [绑定属性到会话](docs/Sessions/7.4 Binding Attributes into a Session.md)
    • [会话超时](docs/Sessions/7.5 Session Timeouts.md)
    • [最后访问时间](docs/Sessions/7.6 Last Accessed Times.md)
    • [重要会话语义](docs/Sessions/7.7 Important Session Semantics.md)
  • [注解和可插拔性](docs/Annotations and pluggability/8. Annotations and pluggability.md)
    • [注解和可插拔性](docs/Annotations and pluggability/8.1 Annotations and pluggability.md)
    • [可插拔性](docs/Annotations and pluggability/8.2 Pluggability.md)
    • [JSP 容器可插拔性](docs/Annotations and pluggability/8.3 JSP container pluggability.md)
    • [处理注解和 fragment](docs/Annotations and pluggability/8.4 Processing annotations and fragments.md)
  • [分发请求](docs/Dispatching Requests/9. Dispatching Requests.md)
    • [获取 RequestDispatcher](docs/Dispatching Requests/9.1 Obtaining a RequestDispatcher.md)
    • [使用请求调度器](docs/Dispatching Requests/9.2 Using a Request Dispatcher.md)
    • [Include 方法](docs/Dispatching Requests/9.3 The Include Method.md)
    • [Forward 方法](docs/Dispatching Requests/9.4 The Forward Method.md)
    • [错误处理](docs/Dispatching Requests/9.5 Error Handling.md)
    • [获取 AsyncContext](docs/Dispatching Requests/9.6 Obtaining an AsyncContext.md)
    • [Dispatch 方法](docs/Dispatching Requests/9.7 The Dispatch Method.md)
  • [Web 应用](docs/Web Applications/10. Web Applications.md)
    • [Web 服务器中的 Web 应用](docs/Web Applications/10.1 Web Applications Within Web Servers.md)
    • [与 ServletContext 的关系](docs/Web Applications/10.2 Relationship to ServletContext.md)
    • [Web 应用的元素](docs/Web Applications/10.3 Elements of a Web Application.md)
    • [部署层次结构](docs/Web Applications/10.4 Deployment Hierarchies.md)
    • [目录结构](docs/Web Applications/10.5 Directory Structure.md)
    • [Web应用归档文件](docs/Web Applications/10.6 Web Application Archive File.md)
    • [Web 应用部署描述符](docs/Web Applications/10.7 Web Application Deployment Descriptor.md)
    • [更新 Web 应用](docs/Web Applications/10.8 Replacing a Web Application.md)
    • [错误处理](docs/Web Applications/10.9 Error Handling.md)
    • [欢迎文件](docs/Web Applications/10.10 Welcome Files.md)
    • [Web 环境](docs/Web Applications/10.11 Web Application Environment.md)
    • [Web 应用部署](docs/Web Applications/10.12 Web Application Deployment.md)
    • [包含 web.xml 部署描述符](docs/Web Applications/10.13 Inclusion of a web.xml Deployment Descriptor.md)
  • 应用生命周期事件
    • [介绍](docs/Application Lifecycle Events/11.1 Introduction.md)
    • [事件监听器](docs/Application Lifecycle Events/11.2 Event Listeners.md)
    • [监听器类的配置](docs/Application Lifecycle Events/11.3 Listener Class Configuration.md)
    • [部署描述符示例](docs/Application Lifecycle Events/11.4 Deployment Descriptor Example.md)
    • [监听器实例和线程](docs/Application Lifecycle Events/11.5 Listener Instances and Threading.md)
    • [监听器异常](docs/Application Lifecycle Events/11.6 Listener Exceptions.md)
    • [分布式容器](docs/Application Lifecycle Events/11.7 Distributed Containers.md)
    • [会话事件](docs/Application Lifecycle Events/11.8 Session Events.md)
  • [映射请求到 Servlet](docs/Mapping Requests to Servlets/12. Mapping Requests to Servlets.md)
    • [使用 URL 路径](docs/Mapping Requests to Servlets/12.1 Use of URL Paths.md)
    • [映射规范](docs/Mapping Requests to Servlets/12.2 Specification of Mappings.md)
  • [安全](docs/Security/13. Security.md)
    • [介绍](docs/Security/13.1 Introduction.md)
    • [声明式安全](docs/Security/13.2 Declarative Security.md)
    • [编程式安全](docs/Security/13.3 Programmatic Security.md)
    • [编程式安全策略配置](docs/Security/13.4 Programmatic Security Policy Configuration.md)
    • [角色](docs/Security/13.5 Roles.md)
    • [认证](docs/Security/13.6 Authentication.md)
    • [服务器跟踪认证信息](docs/Security/13.7 Server Tracking of Authentication Information.md)
    • [指定安全约束](docs/Security/13.8 Specifying Security Constraints.md)
    • [默认策略](docs/Security/13.9 Default Policies.md)
    • [登录和登出](docs/Security/13.10 Login and Logout.md)
  • [部署描述符](docs/Deployment Descriptor/14. Deployment Descriptor.md)
    • [部署描述符元素](docs/Deployment Descriptor/14.1 Deployment Descriptor Elements.md)
    • [处理部署描述符的规则](docs/Deployment Descriptor/14.2 Rules for Processing the Deployment Descriptor.md)
    • [部署描述符](docs/Deployment Descriptor/14.3 Deployment Descriptor.md)
    • [部署描述符图解](docs/Deployment Descriptor/14.4 Deployment Descriptor Diagram.md)
    • [示例](docs/Deployment Descriptor/14.5 Examples.md)
  • [与其它规范有关的要求](docs/Requirements related to other Specifications/15. Requirements related to other Specifications.md)
    • [会话](docs/Requirements related to other Specifications/15.1 Sessions.md)
    • [Web 应用](docs/Requirements related to other Specifications/15.2 Web Applications.md)
    • [安全](docs/Requirements related to other Specifications/15.3 Security.md)
    • [部署](docs/Requirements related to other Specifications/15.4 Deployment.md)
    • [注解和资源注入](docs/Requirements related to other Specifications/15.5 Annotations and Resource Injection.md)