Hello Servlet
Basic HTTP servlet with request/response handling.
Project Structure
Section titled “Project Structure”hello-servlet/└── hello-servlet.featureJakarta EE
Section titled “Jakarta EE”jakarta/├── Dockerfile├── Makefile├── pom.xml├── smoke.py└── src └── main ├── java │ └── jakarta │ └── tutorial │ └── web │ └── servlet │ └── Greeting.java └── liberty └── config └── server.xmlQuarkus
Section titled “Quarkus”quarkus/├── Dockerfile├── Makefile├── pom.xml├── smoke.py└── src └── main └── java └── quarkus └── tutorial └── web └── servlet └── Greeting.javaSpring
Section titled “Spring”spring/├── Dockerfile├── Makefile├── pom.xml├── smoke.py└── src └── main └── java └── spring └── tutorial └── web └── servlet ├── Greeting.java └── HelloServletApplication.java