diff --git a/build.xml b/build.xml index 43c5003..bb78902 100644 --- a/build.xml +++ b/build.xml @@ -7,8 +7,8 @@ - - Builds, tests, and runs the project ap33AppliSDIS. + + Builds, tests, and runs the project ap33ApplicationSDIS-V2. - + @@ -470,7 +470,7 @@ or ant -Dj2ee.platform.classpath=<server_classpath> (where no properties f - + @@ -618,7 +618,7 @@ or ant -Dj2ee.platform.classpath=<server_classpath> (where no properties f - + diff --git a/nbproject/genfiles.properties b/nbproject/genfiles.properties index 24eac93..f3d796d 100644 --- a/nbproject/genfiles.properties +++ b/nbproject/genfiles.properties @@ -1,8 +1,8 @@ -build.xml.data.CRC32=7a7da587 -build.xml.script.CRC32=b229f15b +build.xml.data.CRC32=b7dbe5f7 +build.xml.script.CRC32=14676051 build.xml.stylesheet.CRC32=1707db4f@1.98.0.1 # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=7a7da587 -nbproject/build-impl.xml.script.CRC32=c145c343 +nbproject/build-impl.xml.data.CRC32=b7dbe5f7 +nbproject/build-impl.xml.script.CRC32=ff0143c9 nbproject/build-impl.xml.stylesheet.CRC32=334708a0@1.98.0.1 diff --git a/nbproject/project.properties b/nbproject/project.properties index 170713c..40504b3 100644 --- a/nbproject/project.properties +++ b/nbproject/project.properties @@ -77,6 +77,6 @@ src.dir=${source.root}/java test.src.dir=test war.content.additional= war.ear.name=${war.name} -war.name=ap33AppliSDIS.war +war.name=ap33ApplicationSDIS-V2.war web.docbase.dir=web webinf.dir=web/WEB-INF diff --git a/nbproject/project.xml b/nbproject/project.xml index 2c311ef..a39ecef 100644 --- a/nbproject/project.xml +++ b/nbproject/project.xml @@ -3,7 +3,7 @@ org.netbeans.modules.web.project - ap33AppliSDIS + ap33ApplicationSDIS-V2 1.6.5 diff --git a/src/java/servlets/ProfilServlet.java b/src/java/servlets/ProfilServlet.java new file mode 100644 index 0000000..5a2a9ee --- /dev/null +++ b/src/java/servlets/ProfilServlet.java @@ -0,0 +1,85 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/JSP_Servlet/Servlet.java to edit this template + */ +package servlets; + +import java.io.IOException; +import java.io.PrintWriter; +import jakarta.servlet.ServletException; +import jakarta.servlet.http.HttpServlet; +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; + +/** + * + * @author morgann.david + */ +public class ProfilServlet extends HttpServlet { + + /** + * Processes requests for both HTTP GET and POST + * methods. + * + * @param request servlet request + * @param response servlet response + * @throws ServletException if a servlet-specific error occurs + * @throws IOException if an I/O error occurs + */ + protected void processRequest(HttpServletRequest request, HttpServletResponse response) + throws ServletException, IOException { + response.setContentType("text/html;charset=UTF-8"); + try (PrintWriter out = response.getWriter()) { + /* TODO output your page here. You may use following sample code. */ + out.println(""); + out.println(""); + out.println(""); + out.println("Servlet ProfilServlet"); + out.println(""); + out.println(""); + out.println("

Servlet ProfilServlet at " + request.getContextPath() + "

"); + out.println(""); + out.println(""); + } + } + + // + /** + * Handles the HTTP GET method. + * + * @param request servlet request + * @param response servlet response + * @throws ServletException if a servlet-specific error occurs + * @throws IOException if an I/O error occurs + */ + @Override + protected void doGet(HttpServletRequest request, HttpServletResponse response) + throws ServletException, IOException { + processRequest(request, response); + } + + /** + * Handles the HTTP POST method. + * + * @param request servlet request + * @param response servlet response + * @throws ServletException if a servlet-specific error occurs + * @throws IOException if an I/O error occurs + */ + @Override + protected void doPost(HttpServletRequest request, HttpServletResponse response) + throws ServletException, IOException { + processRequest(request, response); + } + + /** + * Returns a short description of the servlet. + * + * @return a String containing servlet description + */ + @Override + public String getServletInfo() { + return "Short description"; + }// + +} diff --git a/web/META-INF/context.xml b/web/META-INF/context.xml index 8a28983..a786714 100644 --- a/web/META-INF/context.xml +++ b/web/META-INF/context.xml @@ -1,2 +1,2 @@ - + diff --git a/web/WEB-INF/profilPompierVue.jsp b/web/WEB-INF/profilPompierVue.jsp new file mode 100644 index 0000000..2be6777 --- /dev/null +++ b/web/WEB-INF/profilPompierVue.jsp @@ -0,0 +1,21 @@ +<%-- + Document : profilPompierVue + Created on : 7 nov. 2024, 15:07:13 + Author : morgann.david +--%> + +<%@page contentType="text/html" pageEncoding="UTF-8"%> + + + + + SDIS 29 - Profil + + +

Profil du pompier

+
+ +
+
+ + diff --git a/web/WEB-INF/web.xml b/web/WEB-INF/web.xml new file mode 100644 index 0000000..85b5265 --- /dev/null +++ b/web/WEB-INF/web.xml @@ -0,0 +1,11 @@ + + + + ProfilServlet + servlets.ProfilServlet + + + ProfilServlet + /Profil + +