session-scoped managed bean appears to be not session scoped in an xpages application
I'd wrote a session scoped managed bean to cache the sesion user specific info in a domino xpages application,just like the following codes: public class NBUserInfo { private String fullUserName; private String commonUserName; private String displayName; private String mailAddress; private String themeType; private String themeData; private Session _session; private Database _dbnames; private Name _dominoName; public NBUserInfo(){ System.out.println("初始化Managed Bean:NBUserInfo..."); _session = ExtLibUtil.getCurrentSession(); try { System.out.println(_session.getEffectiveUserName()); _dbnames =