Hi guys, I'm just starting out on this certification and I have a question about the
servlet life-cycle and thread-safety - it may seem basic, but I just want to be sure

!
From what I've read there will only ever be once instance of my Servlet class created. When the instance is first created the init-method will be called, followed by the service-method, which will in turn call the doGet-method (for example). Then any subsequent calls to this Servlet will result in a new
thread be spawning and calling the service-method of the previously created instance of my Servlet class.
So does this mean that methods that my Servlet implements must be thread-safe? For example my doGet-method implementation should be thread-safe as there could be multiple threads executing this method concurrently.