我正在尝试使用一个简单示例在List<String>
中插入多个IP。但我得到了以下错误。
javax.el.PropertyNotFoundException:目标无法访问,'BracketSuffix'返回null
这是我的JSF 2.2页面:
<h:form id="form">
<ui:repeat value="#{exampleBean.ipAddresses}" var="s"
varStatus="status">
<h:inputText value="#{exampleBean.ipAddresses[status.index]}" />
</ui:repeat>
<h:inputText value="#{exampleBean.newIp}" />
<h:commandButton value="Add" action="#{exampleBean.add}" />
<h:commandButton value="Save" action="#{exampleBean.save}" />
</h:form>
这是我的支持豆:
@ManagedBean
@ViewScoped
public class ExampleBean implements Serializable {
private static final long serialVersionUID = 1L;
private List<String> ipAddresses;
private String newIp;
@PostConstruct
public void init() {
ipAddresses= new ArrayList<String>();
}
public String save() {
System.out.println(ipAddresses.toString());
return null;
}
public void add() {
ipAddresses.add(newIp);
newIp = null;
}
public List<String> getIpAddresses() {
return ipAddresses;
}
public String getNewIp() {
return newIp;
}
public void setNewIp(String newIp) {
this.newIp = newIp;
}
}
这是如何引起的?如何解决?
答案 0 :(得分:2)
javax.el.PropertyNotFoundException:Target Unreachable,&#39; BracketSuffix&#39;返回null
异常消息错误。这是服务器使用的EL实现中的错误。在您的具体案例中,真正的含义是:
javax.el.PropertyNotFoundException:目标无法访问,&#39; ipAddresses [status.index]&#39;返回null
换句话说,数组列表中没有这样的项目。这表明bean在表单提交时重新创建,因此将所有内容重新初始化为默认值。因此它表现得像@RequestScoped
。您很可能导入了错误的@ViewScoped
注释。对于@ManagedBean
,您需要确保@ViewScoped
是从同一个javax.faces.bean
包导入的,而不是JSF 2.2引入的javax.faces.view
对于CDI @Named
bean。
import javax.faces.bean.ManagedBean;
import javax.faces.bean.ViewScoped;
更新:根据评论,您使用的是通常附带古老MyFaces 2.0.x版本的WebSphere 8.5。我用MyFaces 2.0.5重现了你的问题。它的<ui:repeat>
无法记住其迭代状态的视图状态,这就是为什么即使您正确使用@ViewScoped
bean,您的构造仍然失败的原因。我可以使用<c:forEach>
来解决这个问题。
<c:forEach items="#{exampleBean.ipAddresses}" var="s" varStatus="status">
...
</c:forEach>
替代解决方案(除了将MyFaces升级到更新/正常版本之外,显然)将不可变String
包装在可变的javabean中,例如
public class IpAddress implements Serializable {
private String value;
// ...
}
这样您就可以使用List<IpAddress>
代替List<String>
,因此您不再需要varStatus
来触发MyFaces错误。
private List<IpAddress> ipAddresses;
private IpAddress newIp;
@PostConstruct
public void init() {
ipAddresses= new ArrayList<IpAddress>();
newIp = new IpAddress();
}
<ui:repeat value="#{exampleBean.ipAddresses}" var="ipAddress">
<h:inputText value="#{ipAddress.value}" />
</ui:repeat>
<h:inputText value="#{exampleBean.newIp.value}" />