0

(java7, jsf/mojarra v2.1.11, primefaces v3.4.2)

问题

我有一个表单,其中p:autocomplete包含用户需要填充的输入字段以及其他字段(如下所示)。

现在,在页面返回验证和/或所需错误后,用户设置的值不再显示。这与仍然显示用户已输入/设置的值的所有其他字段形成对比。

问题:

为什么此字段不显示用户输入的值?我可以强制它显示值吗?

(同样,最初,所选值在p:autocomplete输入框中可见。但是,在页面提交并返回验证错误后,不再显示所选值)

标签如下所示:

<p:autoComplete
    id="code"
    requiredMessage="code value required"
    converter="acConverter"
    style="overflow: hidden"
    maxResults="200"
    scrollHeight="150"
    dropdown="false"
    value="#{testBean.parmMap['code']}"
    completeMethod="#{testBean.codeListComplete}"
    var="entry"
    itemLabel="#{entry.split(':')[1]}"
    itemValue="#{entry.split(':')[0]}"
    minQueryLength="1"
    forceSelection="true">
</p:autoComplete>   

现在,如果用户提交表单并且表单被回发并出现各种表单验证错误,那么,即使用户p:autocomplete从在请求/内存中)。






仅供参考 - 如果您需要,以下是更多信息(否则,您可以忽略它)...

索引.xhtml...

<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:f="http://java.sun.com/jsf/core"
      xmlns:c="http://java.sun.com/jsp/jstl/core"
      xmlns:p="http://primefaces.org/ui">
    <f:view contentType="text/html">
        <h:head>
            <title>test autocomplete...</title>
            <meta charset="utf-8" />
        </h:head>
        <h:body>
            <h:form id="queryForm">

                <f:event type="postValidate" listener="#{testBean.validate}" />
                <p:panel id="queryPanel"  header="test autocomplete..." style="width:100%;">

                    <p:autoComplete
                        id="code"
                        requiredMessage="code value required"
                        converter="acConverter"
                        style="overflow: hidden"
                        maxResults="200"
                        scrollHeight="150"
                        dropdown="false"
                        value="#{testBean.parmMap['code']}"
                        completeMethod="#{testBean.codeListComplete}"
                        var="entry"
                        itemLabel="#{entry.split(':')[1]}"
                        itemValue="#{entry.split(':')[0]}"
                        minQueryLength="1"
                        forceSelection="true">
                    </p:autoComplete>

                    <br/>
                    <br/>

                    <p:commandButton
                        id="submit"
                        value="Submit"
                        type="submit"
                        update="@form"
                        process="@form"
                        action="#{testBean.submitQuery}"
                        style="width:150px;"
                        styleClass="button"/>

                    <p:commandButton
                        value="Reset"
                        update="@form"
                        onclick="location.reload();return true;"
                        process="@this"
                        actionListener="#{testBean.reset}"
                        immediate="true"
                        ajax="false"/>

                </p:panel>
            </h:form>

            <h:outputStylesheet library="styles"    name="query.css"      />
            <h:outputScript      library="primefaces" name="/jquery/jquery.js" />
            <h:outputScript      library="primefaces" name="/jquery/plugins/ui/jquery-ui.custom.js" />
            <h:outputScript     library="primefaces" name="/jquery/plugins/inputmask/maskedinput.js" />

        </h:body>
    </f:view>
</html>

TestBean.java...

package aaa.bbb.ccc.war;

import java.io.Serializable;
import java.text.ParseException;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import javax.faces.application.FacesMessage;
import javax.faces.component.UIForm;
import javax.faces.component.UIInput;
import javax.faces.context.FacesContext;
import javax.faces.event.ActionEvent;
import javax.faces.event.ComponentSystemEvent;
import org.apache.commons.lang.StringUtils;
import org.primefaces.context.RequestContext;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;

@Component("testBean")
@Scope("request")
public class TestBean implements Serializable
{
    public TestBean()
    {
        parmMap = this.getParmMap();
        FacesContext.getCurrentInstance().getExternalContext().getSessionMap().put("parmMap", parmMap);
    }

    public void reset(ActionEvent event)
    {
        RequestContext.getCurrentInstance().reset("queryForm:queryPanel");
        LinkedHashMap<String, Object> m = new LinkedHashMap<String, Object>();
        FacesContext.getCurrentInstance().getExternalContext().getSessionMap().remove("parmMap");
        setParmMap(m);
    }

    public String submitQuery()
    {
        FacesContext.getCurrentInstance().getExternalContext().getSessionMap().remove("hitlistData");

        System.out.println("TestBean_________________________submitQuery()____________________parmMap contains:" + this.getParmMap().toString());

        if (this.getParmMap().isEmpty())
        {
            return "";
        }

        return "/page2.xhtml?faces-redirect=true";
    }

    private static LinkedHashMap<String, Object> parmMap;
    public LinkedHashMap<String, Object> getParmMap()
    {
        LinkedHashMap<String, Object> map = (LinkedHashMap<String, Object>) FacesContext.getCurrentInstance().getExternalContext().getSessionMap().get("parmMap");

        if (null == map)
        {
            map = new LinkedHashMap<String, Object>();
        }

        return map;
    }

    public void setParmMap(LinkedHashMap<String, Object> map)
    {
        parmMap = map;
        FacesContext.getCurrentInstance().getExternalContext().getSessionMap().put("parmMap", parmMap);
    }

    public void validate(ComponentSystemEvent e) throws ParseException
    {
        LinkedHashMap parmMap = this.getParmMap();
        UIForm queryForm = (UIForm) e.getComponent();
        FacesContext fc = FacesContext.getCurrentInstance();

        UIInput code_c = (UIInput) queryForm.findComponent("code");
        String code = (String) code_c.getValue();

        try
        {
            if (StringUtils.isBlank(code))
            {
                code_c.setSubmittedValue("");
                code_c.setValid(false);
                fc.addMessage(code_c.getClientId(), new FacesMessage(FacesMessage.SEVERITY_ERROR, code_c.getRequiredMessage(), code_c.getRequiredMessage()));
            }

            if (fc.getMessageList().size() > 0)
            {
                fc.renderResponse();
            }
        }
        catch (Exception e1)
        {
            e1.printStackTrace();
        }
    }

    private static List<String> codeList;
    public static List<String> getCodeList()
    {
        codeList = (List<String>) FacesContext.getCurrentInstance().getExternalContext().getSessionMap().get("codeList");

        if (null == codeList)
        {
            codeList = new ArrayList<String>();
            codeList.add("keyaaaa:valaaaa");
            codeList.add("keybbbb:valbbbb");
            codeList.add("keycccc:valcccc");
            codeList.add("keydddd:valdddd");
            codeList.add("keyeeee:valeeee");
            codeList.add("keyffff:valffff");
            codeList.add("keygggg:valgggg");
            codeList.add("keyhhhh:valhhhh");
            FacesContext.getCurrentInstance().getExternalContext().getSessionMap().put("codeList", codeList);
        }

        return codeList;
    }

    public void setCodeList(List<String> list)
    {
        codeList = list;
    }

    public static List<String> codeListComplete(String s)       //autocomplete "completeMethod"...
    {
        List<String> list = getCodeList();
        List<String> suggestions = new ArrayList<String>();
        for (String ss : list)
        {
            if (ss.toLowerCase().contains(s.toLowerCase()))
            {
                suggestions.add(ss);
            }
        }

        return suggestions;
    }

}

ACConverter.java(我在尝试删除字符串值“null”时创建了它)...

package aaa.bbb.ccc.war;

import javax.faces.application.FacesMessage;
import javax.faces.component.UIComponent;
import javax.faces.component.UIInput;
import javax.faces.context.FacesContext;
import javax.faces.convert.Converter;
import javax.faces.convert.ConverterException;
import javax.faces.convert.FacesConverter;
import org.apache.commons.lang.StringUtils;

@FacesConverter("acConverter")
public class ACConverter implements Converter
{
    @Override
    public Object getAsObject(FacesContext context, UIComponent component, String value)
    {
        try
        {
            if (StringUtils.isBlank(value) || String.valueOf(value).equalsIgnoreCase("null"))
            {
                return "";
            }
        }
        catch (Exception e)
        {
            UIInput input = (UIInput) component;
            FacesMessage msg = new FacesMessage(input.getConverterMessage(),input.getConverterMessage());
            msg.setSeverity(FacesMessage.SEVERITY_ERROR);
            throw new ConverterException(msg);
        }

        return value;
    }

    @Override
    public String getAsString(FacesContext context, UIComponent component, Object value)
    {
        return (null==value?"":String.valueOf(value));
    }
}
4

1 回答 1

0

可能是因为您的 bean 是请求范围的。尝试改为查看范围。看这里

于 2013-01-30T10:37:07.270 回答