从JSF请求中检索会话ID值

如何在JSF托管bean中检索会话ID值?

FacesContext fCtx = FacesContext.getCurrentInstance(); HttpSession session = (HttpSession) fCtx.getExternalContext().getSession(false); String sessionId = session.getId();