使用javax.faces.INTERPRET_EMPTY_STRING_SUBMITTED_VALUES_AS_NULL导致viewParam为空

问题描述 投票:0回答:1

我正在尝试将应用程序从WildFly 13(Java EE 7,JSF 2.2.15)切换到WildFly 16(Java EE 8,JSF 2.3.9)。尝试了PrimeFaces 6.2和7.0]

在web.xml中设置为javax.faces.INTERPRET_EMPTY_STRING_SUBMITTED_VALUES_AS_NULL。JSF 2.2版本工作正常,切换到WildFly 16这个不同的行为。一个简单的例子如下:

说明:访问:http://localhost:8080/primefaces-test/?tipo=U&test=Bah单击第一个按钮,单击第二个按钮。在ajax之后,bean中的viewParam值将为null,即使它已填充在URL中。

示例项目(码头):https://github.com/erickdeoliveiraleal/primefaces-test/tree/update

XHTML

 <!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:p="http://primefaces.org/ui"
    xmlns:h="http://java.sun.com/jsf/html">
<f:metadata>

    <f:viewParam name="test" value="#{testView.testString}" />
    <f:viewAction action="#{testView.inicializar}" />

</f:metadata>
<h:head>
    <title>PrimeFaces Test</title>
</h:head>
<h:body>

    <h:form id="cadastro">
        <h:commandButton value="click me"
            action="#{testView.inserirNaLista()}">
            <f:ajax execute="@form" render="@form" />
        </h:commandButton>
        <p:commandButton
            value="click me - 2 (this button causes the null value)"
            action="#{testView.inserirNaLista()}" />

    </h:form>


</h:body>
</html>

Bean

@ManagedBean(name = "testView")
@ViewScoped
public class TestView implements Serializable {
    private String testString;

    public void inicializar() {
        System.out.println("initializing: " + testString);

    }

    public void inserirNaLista() {
        System.out.println(testString);
    }

    public String getTestString() {
        return testString;
    }

    public void setTestString(String testString) {
        this.testString = testString;
    }

}
jsf primefaces wildfly mojarra jsf-2.3
1个回答
0
投票

答案是:“取决于”。我建议阅读这篇文章:https://balusc.omnifaces.org/2015/10/the-empty-string-madness.html(备份链接:http://archive.is/wemf2),该文章根据您的情况提供了许多解决方案。

© www.soinside.com 2019 - 2024. All rights reserved.