我想清除xpages应用程序中的当前会话作用域并重新加载它们。我尝试过:
public Map<String, Object> sesScope;
this.sesScope = JSFUtil.getSessionScope();
clearMap(sesScope);
private void clearMap(Map<String, Object> map ){ // Get iterator for the keys
String methodName = new Object(){}.getClass().getEnclosingMethod().getName();
utils.printToConsole(this.getClass().getSimpleName().toString() + " " + methodName);
utils.printToConsole("-------before removing------");
utils.printToConsole(map.toString());
Set keyset = map.keySet();
Iterator itr = keyset.iterator();
while (itr.hasNext()) {
itr.next();
itr.remove();
}
utils.printToConsole("--------After removing-------");
utils.printToConsole(map.toString());
}
不知何故,我不能简单地说sesScope.clear(),因为这会导致一个错误:
发生在com.sun.faces.context.BaseContextMap.clear上的不支持操作异常(错误代码:392)
如何正确清除会话作用域?
1条答案
按热度按时间goqiplq21#
我这样做是为了清除sessionScope: