From dfc57517c8fd60f862029d95c25aa01410578c69 Mon Sep 17 00:00:00 2001 From: Kamal Wickramanayake Date: Sat, 28 Mar 2026 21:06:57 +0530 Subject: Added hello webapp sample application --- maven/02-hello-webapp/src/main/webapp/WEB-INF/web.xml | 10 ++++++++++ maven/02-hello-webapp/src/main/webapp/index.jsp | 5 +++++ 2 files changed, 15 insertions(+) create mode 100644 maven/02-hello-webapp/src/main/webapp/WEB-INF/web.xml create mode 100644 maven/02-hello-webapp/src/main/webapp/index.jsp (limited to 'maven/02-hello-webapp/src/main/webapp') diff --git a/maven/02-hello-webapp/src/main/webapp/WEB-INF/web.xml b/maven/02-hello-webapp/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 0000000..b9c921f --- /dev/null +++ b/maven/02-hello-webapp/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,10 @@ + + + Archetype Created Web Application + diff --git a/maven/02-hello-webapp/src/main/webapp/index.jsp b/maven/02-hello-webapp/src/main/webapp/index.jsp new file mode 100644 index 0000000..ee89d62 --- /dev/null +++ b/maven/02-hello-webapp/src/main/webapp/index.jsp @@ -0,0 +1,5 @@ + + +

<%= "Hello World!" %>

+ + -- cgit v1.2.3