Package controleur

Source Code of controleur.preparerSupprimerSportif

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/

package controleur;

import dao.SportifDAO;
import java.io.IOException;
import javax.naming.Context;
import javax.naming.InitialContext;
import javax.naming.NamingException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.sql.DataSource;
import model.Sportif;
/**
*
* @author fofana
*/
public class preparerSupprimerSportif extends HttpServlet {
  
private DataSource dataSource;

    @Override
    public void init() throws ServletException {
        try {
            Context init = new InitialContext();
            dataSource = (DataSource) init.lookup("java:comp/env/jdbc/iphitosbd");
        } catch (NamingException ne) {
            throw new ServletException("problème lors du chargement du driver ",
                    ne);
        }
    }

    /**
     * Processes requests for both HTTP <code>GET</code> and <code>POST</code> 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 {
        try {
            int idSportif = Integer.parseInt(request.getParameter("idsportif"));
            SportifDAO spdao = new SportifDAO(dataSource);
            Sportif s = spdao.loadSportif(idSportif);
            request.setAttribute("sportif", s);
            getServletContext().getRequestDispatcher("/formulaireSupprimerSportif.jsp").forward(request, response);
            return;
        } catch (Exception e) {
            throw new ServletException(e.getMessage(), e);
        }

    }

    // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
    /**
     * Handles the HTTP <code>GET</code> 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 <code>POST</code> 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";
    }// </editor-fold>
}

TOP

Related Classes of controleur.preparerSupprimerSportif

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.