javaxservlet
javax.servlet is the standard package of the Java Servlet API that defines how Java programs can extend a web server's behavior by handling HTTP requests. It is part of Java EE and, since 2019, Jakarta EE, with the historical package name javax.servlet and its extensions implemented by servlet containers such as Tomcat, Jetty, and GlassFish.
Key interfaces and classes reside in javax.servlet and javax.servlet.http, including Servlet, GenericServlet, HttpServlet, ServletRequest, ServletResponse, HttpServletRequest,
A servlet is managed by a container. Its lifecycle is controlled by the container through init(), service(),
Evolution and compatibility: javax.servlet was the standard namespace for the Servlet API in Java EE 8 and
See also: Jakarta Servlet, Java Servlet, Java EE, servlet container.