korhan-Ö
11/5/2016 - 9:36 AM

#Servlet.jsp

---------------------------------------------Çıktı Alma---------------------------------------------
PrintWriter yazici = request.getWriter();
yazici.write("Hello World !");
yazici.flush();

---------------------------------------------Parametre Alma---------------------------------------------
String ad = request.getParameter("ad");

---------------------------------------------URL Yönlendirme 1---------------------------------------------
Response.sendRedirect(String URL);

---------------------------------------------URL Yönlendirme 2---------------------------------------------
request.getRequestDispatcher(String resource).forward(request,response);