The following examples demonstrate how to configure Resin 3.0.15 to start in target/resin3x
and deploy a WAR located in path/to/simple.war
using the Java API. The default port is 8080. Please note that the container.start()
and container.stop()
methods wait until the container is fully started and fully stopped before continuing. Thus, for any action you are executing after, you are assured the container is completely operational.
Static deployment
Static deployment means that the Deployable is deployed before the container is started. Here's an example using the strongly typed Java API:
Here's the same example using the generic untyped API (which we recommend as it leads to more generic code):
Hot deployment
Hot deployment means that the Deployable is deployed after the container is started.
Functional tests
For a detailed documentation on how to use Cargo for executing functional tests on a container, directly from your Java unit test classes (JUnit, TestNG, etc), read our Functional testing page.