Skip to content
This repository has been archived by the owner on Mar 9, 2024. It is now read-only.

Latest commit

 

History

History

servlet-jsp-hello-world

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Servlet JSP Hello World

An example java web application containing example Servlet and JSP.

Deploy

To clean and compile

gradle clean build

Run the web application with Jetty server

gradle appRun

To access the running application visit http://localhost:8001/servlet-jsp-hello-world. To run the application on a different port, e.g. 8080.

gradle appRun -Dport=8080