从servlet转发到jsp的请求

Ita*_*ham 8 html java model-view-controller jsp servlets

我有一个小应用程序(HTML表单,servlet作为控制器和jsp文件),我试图弄清楚为什么我不能将请求从servlet转发到jsp文件.

问题是从html提交后,显示"HTTP Status 404"

申请流程:

  1. 从html提交.
  2. 控制器从html获取名称.
  3. 控制器应该将请求移动到jsp文件.

谢谢!

项目层次结构:http: //s23.postimg.org/kgt7r7lwb/Capture.jpg

main.html中:

<html>
<title>Coupons categories</title>
<body>
  <h1 align="center">Coupons categories</h1>
  <form method="GET" action="Controller">
    Select category 
    Type:
    <select name="type" size=1>
      <option value="restaurants">Restaurants</option>
      <option value="electrics">Electrics</option>
      <option value="hotels">Hotels</option>
    </select>
    <br><br>
      <input type="Submit">
   </form>
</body>
<html>
Run Code Online (Sandbox Code Playgroud)

controller.java:

   @Override
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

        //PrintWriter out = response.getWriter();
        //out.write(request.getPathInfo());

        String path = request.getParameter("type");
        if(path.equals("electrics"))
        {
            request.setAttribute("timestamp", new Date());
            RequestDispatcher dispatcher = getServletContext().getRequestDispatcher("/view/electrics.jsp");
            dispatcher.forward(request, response);
        }
        else if(path.equals("hotels"))
        {
            request.setAttribute("timestamp", new Date());
            RequestDispatcher dispatcher = getServletContext().getRequestDispatcher("/view/hotels.jsp");
            dispatcher.forward(request, response);          
        }
        else if(path.equals("restaurants"))
        {
            request.setAttribute("timestamp", new Date());
            RequestDispatcher dispatcher = getServletContext().getRequestDispatcher("/view/restaurants.jsp");
            dispatcher.forward(request, response);          
        }
    }
Run Code Online (Sandbox Code Playgroud)

electrics.jsp:

<%@ page language="java" contentType="text/html; charset=windows-1255"
    pageEncoding="windows-1255"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1255">
<title>Insert title here</title>
</head>
<body>
    <h2>products list...</h2>
    <%
    Object ob = request.getAttribute("timestamp");
    out.println(ob);
    %>
</body>
</html>
Run Code Online (Sandbox Code Playgroud)

web.xml中:

    <description>
      CouponsServer
    </description>
    <display-name>Controller for CouponsServer</display-name>

    <servlet>
      <servlet-name>Controller</servlet-name>
      <servlet-class>uses.server.Controller</servlet-class>
    </servlet>

    <servlet-mapping>
        <servlet-name>Controller</servlet-name>
        <url-pattern>/Controller</url-pattern>
    </servlet-mapping>


</web-app>
Run Code Online (Sandbox Code Playgroud)

更新:问题可能在controller.java中.当我尝试以下代码时,我得到HTTP状态500. protected void doGet(HttpServletRequest请求,HttpServletResponse响应)抛出ServletException,IOException {

        PrintWriter out = response.getWriter();
        out.write(request.getPathInfo());
    }
Run Code Online (Sandbox Code Playgroud)

Ash*_*tan 7

试试这个

 request.getRequestDispatcher("/view/electrics.jsp").forward(req,res);
Run Code Online (Sandbox Code Playgroud)