Jetty - ilya-khadykin/notes-outdated GitHub Wiki
Jetty is a Web Server written in Java
Jetty Architecture
component | purpose |
---|---|
Connector |
accepts http requests |
Handler |
returns response |
ThreadPool |
used for serving requests |
Terminology
Servlet is a Class which extends capabilities of the web server and creates dynamic pages. It handles http requests and returns response (html page)
ServletContainer is a mapping between Web Server URL schema and related Servlets.