Multi-Threaded Servlet
When you serve servlet, you would end up having to make your own servlet multi-threaded. How? Simply implement SingleThreadModel to your class.
What that does is that it will let first request from a user finish and the seond request wait for the first to finish. How cool is that! However, note that this interface is there when you need to access to external resources such as a text file.





