with variable validate simple sessionscope sesiones practices faces best java session jsf

java - variable - Recuperar valor de ID de sesión de una solicitud JSF



validate session jsf (2)

¿Cómo recupero el valor de ID de sesión dentro de un bean administrado JSF?


Tu intentas

{String uuidFc = FacesContext.getCurrentInstance (). GetExternalContext (). GetSessionId (true); }

Esta línea devuelve el valor de sessionContext sessionId


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