DWR中获取Session

前端之家收集整理的这篇文章主要介绍了DWR中获取Session前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
WebContext w=WebContextFactory.get();
HttpServletRequest r=w.getHttpServletRequest();
String sUrl = r.getRequestURL() + "?" + r.getQueryString();
  String userName= (String) r.getSession(true).getAttribute(
    ParamResources.USER_NAME);
  String Ip= (String) r.getSession(true).getAttribute(
    ParamResources.REMOTE_IP);
  
原文链接:https://www.f2er.com/ajax/166348.html

猜你在找的Ajax相关文章