ServletContext sc = ((HttpServletRequest) pageContext.getRequest()).getSession().getServletContext();
WebApplicationContext ctx = WebApplicationContextUtils.getWebApplicationContext(sc);
//ApplicationContext applicationContext = WebApplicationContextUtils.getWebApplicationContext(sc);
MemberDAO memberDAO = (MemberDAO)ctx.getBean("memberDAOImpl");
User param = new User();
param.setId(empNo);
User user = memberDAO.selectUser(param);
if (null != user) {
return user.getName();
} else {
return "";