By default is
multithreaded. If you like your servlet to behave like single
thread, then you must implement the
SingleThreadedModel interface.
By implementing this interface, you're telling the container that it cannot service requests concurrently, therefore decreasing performance. So the service() method will not be executed in more than one thread at a time.