/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package br.com.webapplication.controller; import br.com.webapplication.model.Aluno; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; /** * * @author meathook */ public class CadastrarAluno 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 { int idAluno = Integer.parseInt(request.getParameter("idAluno")); int idadeAluno = Integer.parseInt(request.getParameter("idadeAluno")); String nomeAluno = request.getParameter("nomeAluno"); String enderecoAluno = request.getParameter("enderecoAluno"); Aluno aluno = new Aluno(); aluno.setIdAluno(idAluno); aluno.setIdadeAluno(idadeAluno); aluno.setNomeAluno(nomeAluno); aluno.setEnderecoAluno(enderecoAluno); if(idadeAluno > 18) { System.out.println("Maior"); } else { System.out.println("Menor"); } } // /** * 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"; }// }