Skip to content

Latest commit

 

History

History

webapp-by-example

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

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