ylbtech-Java-API-Package:javax.http.servlet
1.返回顶部
1、

Package javax.servlet.http

This chapter describes the javax.servlet.http package.

See: 
          Description

Interface Summary
HttpServletRequest Extends the ServletRequest interface to provide request information for HTTP servlets.
HttpServletResponse Extends the ServletResponse interface to provide HTTP-specific functionality in sending a response.
HttpSession Provides a way to identify a user across more than one page request or visit to a Web site and to store information about that user.
HttpSessionActivationListener Objects that are bound to a session may listen to container events notifying them that sessions will be passivated and that session will be activated.
HttpSessionAttributeListener This listener interface can be implemented in order to get notifications of changes to the attribute lists of sessions within this web application.
HttpSessionBindingListener Causes an object to be notified when it is bound to or unbound from a session.
HttpSessionContext Deprecated. As of Java(tm) Servlet API 2.1 for security reasons, with no replacement.
HttpSessionListener Implementations of this interface are notified of changes to the list of active sessions in a web application.
Class Summary
Cookie Creates a cookie, a small amount of information sent by a servlet to a Web browser, saved by the browser, and later sent back to the server.
HttpServlet Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site.
HttpServletRequestWrapper Provides a convenient implementation of the HttpServletRequest interface that can be subclassed by developers wishing to adapt the request to a Servlet.
HttpServletResponseWrapper Provides a convenient implementation of the HttpServletResponse interface that can be subclassed by developers wishing to adapt the response from a Servlet.
HttpSessionBindingEvent Events of this type are either sent to an object that implements HttpSessionBindingListener when it is bound or unbound from a session, or to a HttpSessionAttributeListener that has been configured in the deployment descriptor when any attribute is bound, unbound or replaced in a session.
HttpSessionEvent This is the class representing event notifications for changes to sessions within a web application.
HttpUtils Deprecated. As of Java(tm) Servlet API 2.3.

Package javax.servlet.http Description

This chapter describes the javax.servlet.http package. The chapter includes content that is generated automatically from the javadoc embedded in the actual Java classes and interfaces. This allows the creation of a single, authoritative, specification document.

Servlets Using HTTP Protocol

The javax.servlet.http package contains a number of classes and interfaces that describe and define the contracts between a servlet class running under the HTTP protocol and the runtime environment provided for an instance of such a class by a conforming servlet container.

The class HttpServlet implements the Servlet interface and provides a base developers will extend to implement servlets for implementing web applications employing the HTTP protocol. In addition to generic Servlet interface methods, the class HttpServlet implements interfaces providing HTTP functionality.

The basic Servlet interface defines a service method for handling client requests. This method is called for each request that the servlet container routes to an instance of a servlet.

2、
2.返回顶部
 
3.返回顶部
 
4.返回顶部
 
5.返回顶部
0、
1、
 
6.返回顶部
 
作者:ylbtech
出处:http://ylbtech.cnblogs.com/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。

最新文章

  1. Effective C++ -----条款14: 在资源管理类中小心copying行为
  2. JMeter学习(三十一)Access Log Sampler
  3. 20145305 《Java程序设计》第9周学习总结
  4. CloudStack添加新的API注意事项
  5. HttpClient3.1设置header信息
  6. Redis中connect和pconnect的区别
  7. awk 的 pattern(模式)
  8. linux为什么不可以添加硬链接
  9. SQL的一些基础查询语法
  10. ubuntu16.04 uninstall cuda 9.0 completely and install 8.0 instead
  11. JDK记录-JVM原理与调优(转载)
  12. jsp中相对路劲
  13. .NetCore源码阅读笔记系列之Security (三) Authentication & AddOpenIdConnect
  14. CentOS7安装Jdk1.8
  15. JS onclick事件获取空间value
  16. vuejs、eggjs、mqtt
  17. 一款基于jQuery的图片场景标注提示弹窗特效
  18. AOP-Advisor-笔记
  19. ionic 页面加载事件及loading动画
  20. postman请求失败

热门文章

  1. Spring的AOP面向切面编程
  2. python进阶02
  3. 格点多边形面积公式(Pick定理)的一个形象解释(转)
  4. jquery下json数组的操作用法实例
  5. java文件读写常用方法
  6. sql分页的几种写法
  7. MySQLDump 备份 Shell 脚本
  8. tsne pca 自编码器 绘图(CC2)——一定记得做无量纲化处理使用standardscaler,数据聚类更明显
  9. CodeForces 589H Tourist Guide
  10. Java内存垃圾回收机制(转贴)