Initial commit

This commit is contained in:
MAUREL Yoann
2019-03-04 18:16:31 +01:00
commit 8d7ed4e848
5 changed files with 368 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd" >
<web-app>
<display-name>Archetype Created Web Application</display-name>
</web-app>

16
src/main/webapp/index.jsp Normal file
View File

@@ -0,0 +1,16 @@
<%@ page import="java.util.Date" %>
<html>
<body>
<h2>Hello World!</h2>
<p> Il est <%= new Date() %> </p>
<pre>
La balise pre
permet de conserver les retours à la ligne.
</pre>
</body>
</html>