The getting-started project is a simple Jakarta EE application with a HTTP endpoint that is running in
WildFly.
The src/main folder contains a simple 'Hello world' style Jakarta EE application using JAX-RS.
To run the application, you use Maven:
mvn clean packageMaven will compile the application, provision a WildFly server
The WildFly server is created in target/server with the application deployed in it.
To run the application, run the commands:
cd target/server
./bin/standalone.shOnce WildFly is running, the application can be accessed at http://localhost:8080/
To run integration tests to verify the application, you use Maven:
mvn clean package verifyTests in src/test are run against the server in target/server.