JSP: Créer une page simple en JSP

Author:
<html>
<head>
<title>Bienvenu sur JSP</title>
</head>
<body>
Bienvenu sur ma page. 
<br>Le JavaServer Pages ou JSP est une technique basée sur Java qui permet aux développeurs
<br>http://www.mesexemples.com</body>
</html>
 
 
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4">
<welcome-file-list>
  <welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
 
 
           
       

Cet article JSP: Créer une page simple en JSP est apparu en premier sur .