servlet将空值打印到jsp

时间:2013-08-05 15:31:51

标签: java jsp servlets

我在jsp中有一个Web表单,它应该从servlet获取值,但是它打印出空值。我包含了jsp和下面的servlet的代码。任何人都可以告诉我如何修复下面的代码,以便它打印出请求对象的值而不是打印null?

以下是my.jsp的代码:

<jsp:useBean id="errors" scope="request" type="java.util.Map" class="java.util.HashMap" />
<form method="post">
    <table>
        <tr>
            <td width=302>
            </td>
            <td width=250>
                <table>
                    <tr>
                        <td width=150 align="right">tha: </td>
                        <td><input type="text" name="tha" value="c3t" size="15" />
                            <%if (errors.containsKey("tha")) {out.println("<span class=\"error\">" + errors.get("tha") + "</span>");}  
                            else{out.println(request.getParameter("tha"));}%>  
                        </td>
                    </tr>
                    <tr>
                        <td width=150 align="right">min: </td>
                        <td><input type="text" name="min" value="0" size="15" />
                            <% if (errors.containsKey("min")) {out.println("<span class=\"error\">" + errors.get("min") + "</span>");}  
                            else{out.println(request.getParameter("min"));}%>  
                        </td>
                    </tr>
                    <tr>
                        <td width=150 align="right">max: </td>
                        <td><input type="text" name="max" value="2*pi" size="15" />
                        <% if (errors.containsKey("max")) {out.println("<span class=\"error\">" + errors.get("max") + "</span>");}
                        else{out.println(request.getParameter("max"));}%>
                        </td>
                    </tr>
                    <tr>
                        <td></td>
                        <td align="right">
                        <input type="submit" name="submit-button" value="Click To Plot" />
                        </td>
                    </tr>
                </table>
            </td>
        </tr>
    </table>
</form>  

这是servlet的代码:

public class PlotPolarServlet extends HttpServlet{
    private RequestDispatcher jsp;

    public void init(ServletConfig config) throws ServletException {
       ServletContext context = config.getServletContext();
       jsp = context.getRequestDispatcher("/WEB-INF/jsp/my.jsp");
    } 

    protected void doGet(HttpServletRequest req, HttpServletResponse resp) 
        throws ServletException, IOException {
        jsp.forward(req, resp);
    }

    protected void doPost(HttpServletRequest req, HttpServletResponse resp) 
        throws ServletException, IOException{
        Map<String, String> errors = validate(req);
        if (!errors.isEmpty()){  
            jsp.forward(req, resp);
            return;
        }
        resp.sendRedirect("my");
    }

    public static Map<String, String> validate(HttpServletRequest req){
        HashMap<String, String> errors = new HashMap<String, String>();
        req.setAttribute("errors", errors);
        String tha = req.getParameter("tha");
        if (tha == null || tha.trim().length() == 0){
            errors.put("tha", "tha required.");
        }
        String min = req.getParameter("min");
        if (min == null || min.trim().length() == 0){
            errors.put("min", "min required.");
        }
        String max = req.getParameter("max");
        if (max == null || max.trim().length() == 0){
            errors.put("max", "max required.");
        }
        return errors;
    }
}  

1 个答案:

答案 0 :(得分:2)

我最初误解了你的问题。问题是何时正确输入参数,而不是在出现错误时。此代码的else部分

<% if (errors.containsKey("min")) {out.println("<span class=\"error\">" + errors.get("min") + "</span>");}  
else{out.println(request.getParameter("min"));}%>  
除了null之外,

不能打印任何内容,因为在此请求中,没有带有这些键的参数。

HttpServletResponse#sendRedirect(String)返回302 HTTP状态代码,这将使您的浏览器向String参数描述的位置发送新的HTTP请求。请求参数不在新请求中(请求上下文/范围在处理请求后被清除)。您需要将它们放在会话属性中。

/*
   for every parameter, put it in the session attributes
*/
req.getSession(true).setAttribute("myParam", req.getParameter("myParam"));
resp.sendRedirect("my");

这称为闪存范围和闪存属性,可以使用servlet Filter按照here说明实现。您基本上存储了要在2个请求之间重用的属性,然后将其删除。

编辑:

除非您在编辑中错误地复制粘贴代码

<td><input type="text" name="yX" value="cx" size="15" />
    <%if (errors.containsKey("yX")) {   // errors doesn't contain yX as a Key, it contains imageParam1
         out.println("<span class=\"error\">" + errors.get("yX") + "</span>");
    }else{out.println(request.getParameter("yX"));}%> // will print the value of the request parameter with key yX
</td>

POST了一个名为yX的参数,但正在寻找imageParam。您的doPost()方法会创建errors请求属性,然后forward(而不是sendRedirect)。

errors.put("imageParam1", "imageParam1 required.");
...
if (!errors.isEmpty()){
    jsp.forward(req, resp);
    return;
}

不是yX。因此,else被评估并且参数存在,因为它是相同的请求。

更多解释

my示例中:

  1. 如果您未输入必填字段,则会调用doPost()方法,填充errors地图,您的代码会jsp.forward(req, resp);使用相同的请求,参数为在呈现jsp时可用。
  2. 如果您输入了所有必填字段,则会调用doPost()并执行resp.sendRedirect("my");。这会导致您的浏览器使用新参数/属性发送新的GET HTTP请求。这会导致调用doGet()来处理新请求,该请求将转发到您的jsp。原始请求参数未包含在此请求中,因此无法显示任何内容,因此null会在else{out.println(request.getParameter("min"));呈现时显示。
  3. myother示例中,由于jsp中的<input>参数名称与您在servlet中查找的参数名称之间存在差异,因此您得到的结果完全不相关上面已经解释过了。忽略这个servlet。它没有做你认为正确的做法。