Код: Выделить всё
Index JSP File
Enter Your Name :
Код: Выделить всё
public class IndexController extends HttpServlet {
protected void doProcess(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String uname = request.getParameter("name");
response.sendRedirect("welcome.jsp?name="+uname);
}
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
doProcess(request, response);
}
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
doProcess(request, response);
}
}
Код: Выделить всё
Insert title here
Welcome to JSP World,
Ошибка 404 — не найдено Ни один контекст на этом сервере не соответствовал и не обрабатывал этот запрос. Этому серверу известны следующие контексты: JSPExample(/JSPExample)
Подробнее здесь: https://stackoverflow.com/questions/120 ... is-request