我的問題是te數據不在數據表中刷新。我想在點擊菜單中的項目時銷燬會話範圍。我知道使用Viewscoped可能會有這種情況,但我想學習其他方法。 先進的感謝。銷燬@SessionScoped的便利方法是什麼?
控制器:
@ManagedBean
@SessionScoped
public class MyController implements Serializable {
//getters and setters
...........
}
菜單:
<td><h:outputLink styleClass="itemOutputLink" value="# {request.contextPath}/pages/page.faces">Page1</h:outputLink></td>`
更改bean到'@ ViewScoped'。 –
換句話說,你不希望它成爲會話作用域。 – EJP
我真的想保持會話範圍,我只想從菜單中刪除會話範圍。 – user2683519