0

长话短说,我无法让我的 servlet 变量显示在我的 JSP 页面中。我尝试过类似的方法

 <p><$= request.getAttribute("foo") %></p>

  <p>"${foo}"</p>

并在顶部导入页面,无论有无。

我的 servlet(在底部注释了测试变量的位置):

@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response)
        throws ServletException, IOException
{
    //String that gets returned as HTML
    StringBuilder returnAsHTML = new StringBuilder();

    //Cycles through the parameter(s) sent from the serialized form
    Enumeration<String> parameterNames;

    //Holds all of the parameter(s) values
    LinkedList<String> valuesIn = new LinkedList<String>();

    //Gets all of the parameter names from the serialized form
    parameterNames = request.getParameterNames();

    //Iterate through the enumeration of the parameters
    while(parameterNames.hasMoreElements())
    {
        String currentParameter = parameterNames.nextElement();
        String currentValue = request.getParameter(currentParameter);

        //Prevent a blank value from being added from the text fields (which is what they default to
        //if the user didn't enter anything for "Section:" or "Teacher:").
        if(!currentValue.contentEquals(""))
        {
            valuesIn.add(currentValue);
        }//Else doNothing();
    }

    //Set the section to query, if the user wanted one to search for
    if(request.getParameter("section").isEmpty())
    {
        sectionToQuery = "";
    }
    else
    {
        sectionToQuery = request.getParameter("section").toUpperCase();
    }

    //Set the teacher to query, if the user wanted one to search for
    if(request.getParameter("teacher").isEmpty())
    {
        teacherToQuery = "";
    }
    else
    {
        teacherToQuery = request.getParameter("teacher").toUpperCase();
    }

    //THIS BEGINS THE QUERY - BE SURE TO BREAK THIS DOWN TO OTHER METHODS

    //STAGE 1 See what semesters they are needing, eliminate the ones they don't need.
    resultSet = determineSemesters(valuesIn);

    //STAGE 2 See what locations they are needing, eliminate the ones they don't need.
    determineLocations(resultSet, valuesIn);

    //STAGE 3 See what sections they are needing, eliminate the ones they don't need.
    determineSections(resultSet, valuesIn);

    //STAGE 4 See what instructors they are needing, eliminate the ones they don't need.
    determineInstructors(resultSet, valuesIn);

    //STAGE 5 See if they want to include closed classes or not, eliminate what they don't need.
    determineClosedOrNotClosedCourses(resultSet, valuesIn);

    //SEARCH IS DONE, the remaining elements in "resultSet" are the product of their search. Find
    //The enrollment and the credits that is in resultSet.

    //THIS IS WHERE I AM TESTING IT////////////////
    int foo = 20;
    request.setAttribute("foo", foo);

    //Check to see if the result set is empty
    if(resultSet.isEmpty())
    {
        returnAsHTML.setLength(0);
        returnAsHTML.append("<tr><td colspan='15'><h1>No Results...</h1></tr>");
    }
    else//It's not empty, so style the classes.
    {
        //Make sure results are sorted
        Collections.sort(resultSet);

        //Style all the classes
        for(ClassInfo classes : resultSet)
        {
           returnAsHTML.append(styleClass(classes));
        }//End styling of classes
    }

    //Send back the result
    response.getWriter().write(returnAsHTML.toString());

}

作为 JSP 的新手,我有一些想法。在我看到的示例中,似乎人们使用 response.sendRedirect() 或类似的东西来重定向或转发页面。另一个可能是因为我没有将 int 转换为字符串。有什么想法吗?

4

2 回答 2

1

首先,要将您的 Servlet 重定向到适当的 JSP 页面,您应该使用RequestDispatcher,如下所示:

RequestDispatcher rd = request.getRequestDispatcher("/someJsp.jsp"); 
rd.forward(request, response);

要获得您应该使用的值:

<p><%= request.getAttribute("foo") %></p>

但这是旧的而不是正确的做法。您应该避免在 JSP 页面中使用脚本。为此,我们有表达语言。例如:

<p>
   <c:out value="${requestScope['foo']}"/>
</p>

也可以看看:

于 2013-02-12T21:06:22.393 回答
0

在你的 doGet() 实现中试试这个:

protected void doGet(HttpServletRequest request, HttpServletResponse response)
{
    Object data = "Some data, can be a String or a Javabean";
    request.setAttribute("data", data);
    request.getRequestDispatcher("/WEB-INF/page.jsp").forward(request, response);
}

然后在您的 JSP 中:

<p>The data from servlet: ${data}</p>

希望有帮助!

于 2013-02-12T21:07:15.370 回答