0

我在我的 jsf 页面中有这样的输入

<html:inputText id="ResponseOK" value="#{bean.ResponseOK}" binding="#{bean.ResponseOKInput}" /> 

当我单击命令按钮时,我想获取 servlet 中的值(通过 request.getParameter ("ResponseOK"))

<html:commandButton value="Valider" action="#{bean.callServlet}"/>

调用一个函数

public void callServlet()
    {
         String url = "http://localhost:8080/TestOne/Timers";  //servlet
            FacesContext context = FacesContext.getCurrentInstance();  
            try {  

               context.getExternalContext().redirect(url);  

            }catch (Exception e) {  
               e.printStackTrace();  
            }  
            finally{  
               context.responseComplete();  
            }  
    }

不幸的是,在我的 servlet 变量 Ok 中,只返回 null

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

        String Ok = request.getParameter("ResponseOK");// return null
        System.out.println(timerOk);
        }

非常感谢你

4

1 回答 1

1

为了让您能够从请求中获取属性,输入必须具有 name 属性:

<html:inputText id="ResponseOK" value="#{bean.ResponseOK}" binding="#{bean.ResponseOKInput}"  name="ResponseOK"/>

更新:

我对 JSF 框架不太熟悉,但我认为你的问题是操作按钮。

此按钮不是提交按钮,因此输入的值不会发送到请求。

调用 GET 请求时,您需要在 URL 本身中传递参数,因此您需要 url 看起来像:

http://localhost:8080/TestOne/Timers?ResponseOK=value

因此,您需要将 ResponseOK 输入的值传递给callServlet方法。

希望有帮助。

于 2012-07-24T11:04:20.697 回答