See: Description
| Class | Description |
|---|---|
| EmbeddedPiranha |
The embeddable servlet container version of Piranha.
|
| EmbeddedPiranhaBuilder |
The builder so you can easily build instances of
EmbeddedPiranha. |
| EmbeddedRequest |
The WebApplicationRequest class used by
EmbeddedPiranha |
| EmbeddedRequestBuilder |
The builder so you can easily build instances of
EmbeddedRequest. |
| EmbeddedResponse |
The WebApplicationResponse class used by
EmbeddedPiranha |
| EmbeddedResponseBuilder |
The builder so you can easily build instances of
EmbeddedResponse. |
Piranha Embedded delivers you with an embeddable implementation of a Servlet container. It is used extensively within the Piranha project itself to test all the Servlet functionality.
The image below illustrates how the request and response handling is done by
Piranha Embedded. When an EmbeddedRequest comes
in it uses a WebApplicationRequestMapper to
determine which FilterChain needs to process the incoming request.
We recommend using EmbeddedPiranhaBuilder to
create your instances of EmbeddedPiranha..
EmbeddedPiranha instance.Please use the following dependency.
<dependency> <groupId>cloud.piranha</groupId> <artifactId>piranha-embedded</artifactId> <version>y.m.p</version> <dependency>
where y is the year, m is the month and p is the patch version of the release you want to use.
EmbeddedPiranhaBuilderCopyright © 2020. All rights reserved.