This figure illustrates the servlet life cycle. The life cycle is defined
by the javax.servlet.Servlet interface, which is implemented directly or
indirectly by all servlets. This interface has methods which are called
at specific times by the servlet engine in a particular order during a
servlet's lifecycle. The init() and destroy() methods are invoked once
per servlet lifetime, while the service() method is called multiple times
to execute the servlet's logic.