JSF:HTTP GET参数数组

| 我想将数组作为GET参数传递,例如: http://localhost/index.jsf?myArray = 1stValue&myArray = 2ndValue&myArray = 3rdValue 然后我想遍历该数组:
<c:forEach var=\"p\" items=\"#{param[\'myArray\']}\">
    <h:outputText value=\"#{p}\" />       
</c:forEach>
我知道这段代码无法正常工作。 但是我该怎么做呢?     
已邀请:
        您需要
#{paramValues}
。指
HttpServletRequest#getParameterValues()
<c:forEach var=\"p\" items=\"#{paramValues[\'myArray\']}\">
    <h:outputText value=\"#{p}\" />       
</c:forEach>
要么
<c:forEach var=\"p\" items=\"#{paramValues.myArray}\">
    <h:outputText value=\"#{p}\" />       
</c:forEach>
    

要回复问题请先登录注册