将linkedhashset作为多值返回到xpage

时间:2017-04-12 08:49:32

标签: java xpages linkedhashset

在我的应用程序中,我已将对象的属性定义为LinkedHashSet。我使用多值字段中的值填充属性:

Vector<String> ctrs = doc.getItemValue("countries");        
LinkedHashSet<String> items = new LinkedHashSet<String>();      
for (int i = 0; i < ctrs.size(); i++){          
    items.add(ctrs.get(i));
}       
employee.setCountry(items);

在XPage上我想显示如下值:

<xp:inputText id="inputCountries" value="#{employeeBean.employee.Country}">
    <xp:this.multipleSeparator><![CDATA[#{javascript:var val = getComponent("contractType").getValue();
if (val == "Multi"){
    return ",";
}}]]></xp:this.multipleSeparator>
</xp:inputText>

根据员工的类型,此字段可以是单值或多值。

查看XPage时,返回的值显示如下:

[瑞典,丹麦,爱沙尼亚]

当然,我会把它显示为多值。我该怎么做才能纠正这个问题?

3 个答案:

答案 0 :(得分:3)

如果将HashSet转换为数组,那么它应该可以工作

这是一个例子,第一个作为单个/第二个作为多值字段:

<?xml version="1.0" encoding="UTF-8"?>
<xp:view xmlns:xp="http://www.ibm.com/xsp/core">

    <xp:inputText id="singleValue" multipleSeparator=",">
        <xp:this.value><![CDATA[#{javascript:var items:java.util.Set = new java.util.LinkedHashSet();
items.add("Sweden");      
return items.toArray();}]]>
        </xp:this.value>
    </xp:inputText>

    <br></br>
    <br></br>

    <xp:inputText id="multiValue" multipleSeparator=",">
        <xp:this.value><![CDATA[#{javascript:var items:java.util.Set = new java.util.LinkedHashSet();
items.add("Sweden");
items.add("Denmark");  
items.add("Estonia");
return items.toArray();}]]>
        </xp:this.value>
    </xp:inputText>

</xp:view>

浏览器上的输出如下所示:

Sweden

Sweden,Denmark,Estonia

答案 1 :(得分:1)

您必须使用List而不是Set。

此外,除非您使用LinkedHashSet作为从Vector中删除重复值的方法,否则您只需将setCountry方法传递给向量,因为Vector实现了List

// setting country method
yourBlock() {
   // It's better to use interface instead of implementation for the variable
   List<String> countries = doc.getItemValue("countries");

   setCountries(countries);
}

如果您使用LinkedHashSet作为获取唯一值的方法,则需要稍微调整上述代码。

// setting country method
yourBlock() {
   List<String> countries = doc.getItemValue("countries");

   setCountries(new ArrayList<String>(new LinkedHashSet<String>(countries)));
}

答案 2 :(得分:0)

如果您只想查看数据

选项1:使用@Implode拆分值,某些分隔符,昏迷或<br/>应该有效。

选项2:对自定义渲染使用重复:多个计算文本,div或表。

如果您想要编辑数据

你需要使用重复。在这种情况下,如果要绑定输入,则需要为bean实现Map接口。好的阅读在这里:https://www.mindoo.com/web/blog.nsf/dx/16.07.2009095816KLEBCY.htm?opendocument&comments