JAX-RS Hello
Simple JAX-RS resource with @GET and @POST methods.
Project Structure
Section titled “Project Structure”jaxrs-hello/└── jaxrs-hello.featureJakarta EE
Section titled “Jakarta EE”jakarta/├── Dockerfile├── Makefile├── pom.xml├── smoke.py└── src └── main ├── java │ └── jakarta │ └── tutorial │ └── hello │ ├── HelloApplication.java │ └── HelloWorld.java └── liberty └── config └── server.xmlQuarkus
Section titled “Quarkus”quarkus/├── Dockerfile├── Makefile├── pom.xml├── smoke.py└── src └── main └── java └── quarkus └── tutorial └── hello └── HelloWorld.javaSpring
Section titled “Spring”spring/├── Dockerfile├── Makefile├── pom.xml├── smoke.py└── src └── main └── java └── spring └── tutorial └── hello ├── HelloApplication.java └── HelloWorld.java