Payara Server Embedded Arquillian Container
The Payara Server Enterprise Embedded container lifecycle is managed by Arquillian and resides in the same JVM where tests are executed using a local protocol.
Usage
The Payara Server Enterprise Embedded Arquillian container can be found on Maven Central, and can be included in your project using the following Maven coordinates:
<dependency>
<groupId>fish.payara.arquillian</groupId>
<artifactId>arquillian-payara-server-embedded</artifactId>
<version>${version}</version>
</dependency>
You can find the latest artifact version from here.
Configuring the Container
The following configuration options are available, each of which can be provided through the specified system properties in the arquillian JVM:
Name | Description | Default |
---|---|---|
|
The port number of the http-listener for the embedded Payara Server Enterprise. |
|
|
The port number of the https-listener for the embedded Payara Server Enterprise. |
|
|
The instance root directory is the domain directory and embedded Payara Server Enterprise uses the server instance directory for domain configuration files. |
|
|
The install root directory is the parent directory of a Payara Server Enterprise instance directory and corresponds to the base directory for an installation of Payara Server. |
|
|
Specifies whether Payara should write back any changes to specified configuration file or config/domain.xml at the specified instance root. |
|
|
Set the location of configuration file i.e. domain.xml using which the Payara Server Enterprise should run. |
|
|
A comma-separated list of Payara resources.xml files containing resources
that will be added to the Payara instance using the |
|
|
Specifies whether Arquillian should cleanup on shutdown. This recursively deletes files in the |
|
The easiest way to provide these system properties to the extension runtime is through the surefire plugin.
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemPropertyVariables>
<bindHttpPort>8123</bindHttpPort>
</systemPropertyVariables>
</configuration>
</plugin>