Author: Weinan Li l.weinan@gmail.com, Paul Gier pgier@redhat.com
Level: Beginner
Technologies: Resteasy, Spring
Summary: The spring-resteasy
quickstart demonstrates how to package and deploy a web application that includes resteasy-spring integration.
Target Product: WildFly
Source: https://github.com/wildfly/quickstart/
The spring-resteasy
quickstart demonstrates how to package and deploy a web application, which includes resteasy-spring integration, in WildFly Application Server.
The application this project produces is designed to be run on WildFly Application Server 11 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 for WildFly 11 to make sure you are configured correctly for testing the quickstarts.
For Linux: WILDFLY_HOME/bin/standalone.sh
For Windows: WILDFLY_HOME\bin\standalone.bat
mvn clean package wildfly:deploy
This deploys the target/spring-resteasy.war
to the running instance of the server.
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.
mvn wildfly:undeploy
This quickstart provides Arquillian functional tests as well. They are located in the functional-tests/ subdirectory under the root directory of this quickstart. Functional tests verify that your application behaves correctly from the user's point of view. The tests open a browser instance, simulate clicking around the page as a normal user would do, and then close the browser instance.
To run these tests, you must build the main project as described above.
mvn clean package
Navigate to the functional-tests/ directory in this quickstart.
mvn clean verify -Parq-remote
If you prefer to run the functional tests using managed instance of the WildFly server, meaning the tests will start the server for you, type the following command:
mvn clean verify -Parq-managed