Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 1.73 KB

readme.md

File metadata and controls

44 lines (32 loc) · 1.73 KB

Webapp by example

This project is a basic web application (WAR) in Java.

It uses Maven's <packaging>war</packaging> to create a WAR file, which requires an application server to run.

The web application does not depend on any specific web or application server. The unit tests and simplified deployment for testing via Maven use Jetty.

Resources

Running the web application

mvn package
# Use jetty to serve the application
mvn jetty:run
# Go to http://0.0.0.0:8080/ to see the application

Future work

  • Unit test static TXT
  • Unit test JSP