代码facesContext.getExternalContext().getRequest().getSession()
返回类com.ibm.designer.runtime.domino.adapter.servlet.LCDAdapterHttpSession
。
如果您需要知道该对象属于哪个类,只需添加.getClass().getName()
它即可。所以在你的情况下的代码将是 - facesContext.getExternalContext().getRequest().getSession().getClass().getName()
在Java中你必须写
import javax.faces.context.FacesContext;
// import com.ibm.designer.runtime.domino.adapter.servlet.LCDAdapterHttpSession;
import javax.servlet.http.HttpSession;
...
...
// LCDAdapterHttpSession s = (LCDAdapterHttpSession)FacesContext.getCurrentInstance().getExternalContext().getSession(true);
HttpSession s = (HttpSession)FacesContext.getCurrentInstance().getExternalContext().getSession(true);
return s.getId();
该类LCDAdapterHttpSession
实现javax.servlet.http.HttpSession
.