在Liferay中,我正在使用会话变量进行InterPortlet通信。
PortletSession psession = request.getPortletSession();
String userId = (String) psession.getAttribute("userId", PortletSession.APPLICATION_SCOPE);
使用此变量后,我想要销毁它。
如何销毁,废弃liferay中的会话变量?
答案 0 :(得分:1)
使用PortletSession的removeAttribute方法。它将从会话中删除属性。
在您的情况下psession.removeAttribute("userId");
这也适用于请求和会话属性。