此代码总是抛出 ViewExpiredException
@ManagedBean(name = "test")
@ViewScoped
public class test implements Serializable{
private int count;
public int getCount() {
return count;
}
public void increment() {
count++;
}
}
和 xhtml:
<body>
<h:form>
<h:panelGrid columns="2" cellpadding="5">
<h:outputText value="Counter: " />
<h:outputText value="#{test.count}" />
</h:panelGrid>
<h:commandButton value="Count" action="#{test.increment}" update="@form" />
</h:form>
</body>
有什么诀窍吗?会话存储在服务器中