The spring-resteasy quickstart demonstrates how to package and deploy a web application that includes resteasy-spring integration.
What is it?
The spring-resteasy quickstart demonstrates how to package and deploy a web application, which includes resteasy-spring integration, in
WildFly Application Server.
System Requirements
The application this project produces is designed to be run on WildFly Application Server 13 or later.
All you need to build this project is Java 8.0 (Java SDK 1.8) or later and Maven 3.3.1 or later. See Configure Maven to Build and Deploy the Quickstarts to make sure you are configured correctly for testing the quickstarts.
Use of WILDFLY_HOME
In the following instructions, replace WILDFLY_HOME with the actual path to your WildFly installation. The installation path is described in detail here: Use of WILDFLY_HOME and JBOSS_HOME Variables.
Start the WildFly Standalone Server
-
Open a terminal and navigate to the root of the WildFly directory.
-
Start the WildFly server with the default profile by typing the following command.
$ WILDFLY_HOME/bin/standalone.shNoteFor Windows, use the WILDFLY_HOME\bin\standalone.batscript.
Build and Deploy the Quickstart
-
Make sure you start the WildFly server as described above.
-
Open a terminal and navigate to the root directory of this quickstart.
-
Type the following command to build the artifacts.
$ mvn clean package wildfly:deploy
This deploys the spring-resteasy/target/spring-resteasy.war to the running instance of the server.
You should see a message in the server log indicating that the archive deployed successfully.
Access the Application
The application will be running at the following URL: http://localhost:8080/spring-resteasy/.
That will provide links to the following URLs that demonstrate various path and parameter configurations.
And the same set as above but using the locating path.
Undeploy the Quickstart
When you are finished testing the quickstart, follow these steps to undeploy the archive.
-
Make sure you start the WildFly server as described above.
-
Open a terminal and navigate to the root directory of this quickstart.
-
Type this command to undeploy the archive:
$ mvn wildfly:undeploy
Run the Arquillian Tests
This quickstart provides Arquillian tests. By default, these tests are configured to be skipped since Arquillian tests require the use of a container.
|
Note
|
The Arquillian tests deploy the application, so make sure you undeploy the quickstart before you begin. |
Follow these steps to run the tests.
-
Start the WildFly server as described above.
-
Open a terminal and navigate to the root directory of this quickstart.
-
Type the following command to run the
verifygoal with thearq-remoteprofile activated.$ mvn clean verify -Parq-remote
|
Note
|
You can also let Arquillian manage the WildFly server by using the |
Run the Quickstart in Red Hat JBoss Developer Studio or Eclipse
This quickstart is not supported in Red Hat JBoss Developer Studio.