我有一个JSF页面,并且有一个与之关联的Managedbean。

我的xhtml页面如下所示:

<h:head>

</h:head>

<h:body id="configuratorWrapper">
<h:form method="post" id="form" name ="name" prependId="false">
    <f:view>
        <div class="container">
        <input type="hidden" name="exception" id="exception" value="aaa" />
        </div>
         <h:input type="hidden" name="email" id="email" value="#{emailManagedBean.sendEmailForErrorPage()}" />
    </f:view>
</h:form>
<h:outputScript library="resources/bower_components/boostrap-sass/assets/javascripts" name="bootstrap.js"></h:outputScript>
</h:body>


emailManagedBean是关联的Managedbean,它是@RequestScoped ManagedBean。

EmailManagebean中的sendEmailForErrorPage()方法如下所示:

public Boolean sendEmailForErrorPage() {
        this.exception = FacesContext.getCurrentInstance().getExternalContext().getRequestParameterMap().get("exception");
    }


我需要获取异常值“ aaa”,该值在xhtml页面中给出。但是我现在得到的是空值。

我尝试使用

<p:commandButton name ='email' action="#{emailManagedBean.sendEmailForErrorPage()}">
    <f:param name="exception" value="aaa" />
</p:commandButton>


结果仍然为空。

有人可以帮我解决这个问题。

最佳答案

我找到了解决此问题的方法。我没有将其作为参数传递,而是将其作为参数传递给方法。效果很好。我能够获得例外的价值。

<f:event type="preRenderView" listener="#{emailManagedBean.sendEmailForErrorPage('aaa')}" />

关于java - 在@RequestScoped ManagedBean中未获取请求参数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45081985/

10-10 11:08