Accessing HTTP Session and logged in user in GWT
HttpServletRequest request = this.getThreadLocalRequest();
HttpSession session = request.getSession();
session.invalidate();
HttpServletRequest request = this.getThreadLocalRequest();
String username = request.getUserPrincipal().getName();
more info: http://developerlife.com/tutorials/?p=230
HttpSession session = request.getSession();
session.invalidate();
HttpServletRequest request = this.getThreadLocalRequest();
String username = request.getUserPrincipal().getName();
more info: http://developerlife.com/tutorials/?p=230
0 Responses to "Accessing HTTP Session and logged in user in GWT"
Yorum Gönder