servlet入门学习之API

java servlet API学习网址:

http://tomcat.apache.org/tomcat-7.0-doc/servletapi/

http://tomcat.apache.org/tomcat-5.5-doc/servletapi/javax/servlet/package-tree.html

一、API 概述

  

二、Tree

Hierarchy For All Packages

  Package Hierarchies:

Class Hierarchy

Interface Hierarchy

Annotation Type Hierarchy

    • javax.servlet.annotation.WebServlet (implements java.lang.annotation.Annotation)
    • javax.servlet.annotation.WebListener (implements java.lang.annotation.Annotation)
    • javax.servlet.annotation.WebInitParam (implements java.lang.annotation.Annotation)
    • javax.servlet.annotation.WebFilter (implements java.lang.annotation.Annotation)
    • javax.servlet.annotation.ServletSecurity (implements java.lang.annotation.Annotation)
    • javax.servlet.annotation.MultipartConfig (implements java.lang.annotation.Annotation)
    • javax.servlet.annotation.HttpMethodConstraint (implements java.lang.annotation.Annotation)
    • javax.servlet.annotation.HttpConstraint (implements java.lang.annotation.Annotation)
    • javax.servlet.annotation.HandlesTypes (implements java.lang.annotation.Annotation)

Enum Hierarchy

  

原文地址:https://www.cnblogs.com/haimishasha/p/5611683.html