Module cloud.piranha.server
Package cloud.piranha.server
package cloud.piranha.server
This package delivers you with a Servlet container version of Piranha.
Architecture diagram
The image below illustrates how the request and response handling is done by
Piranha Server. When a request comes in to the HTTP server it dispatches it
to the WebApplicationServer
which uses a
WebApplicationServerRequestMapper
to
determine which web application needs to serve the request and it the
dispatches to it and then in turn the WebApplication uses
WebApplicationRequestMapper
to determine
which FilterChain needs to process the incoming request and it dispatches to
it.
How do I use Piranha Server?
See our documentation for more information.
- Author:
- Manfred Riem (mriem@manorrock.com)
-
ClassDescriptionThis web application supports finding other contexts using
ServletContext.getContext(String)
The Servlet container version of Piranha.