프로그래밍/- eGov

egove Controller get Session

즐겁게 하하하 2023. 1. 6. 11:17
728x90
	private String getScsessionNm() {
		
		String schemaNm = "";
		
		HttpSession session = EgovUserDetailsHelper.getCurrHttpSession();
		if(session != null) {
			SessionVO sessionVO = SessionInfo.getSessionVo(session);
			if(sessionVO != null && !StringUtils.isEmpty(sessionVO.getSchemaNm())) {
				schemaNm = sessionVO.getSchemaNm();
			}
		}
		
		return schemaNm;
	}
728x90