@Override
public View handle(HttpServletRequest req) throws Exception {
Session session = getSession();
// allow either "http://localhost/inspector" or "http://localhost/inspector/"
String base = req.getPathInfo() == null? "inspector/session/" : "session/";
return new RedirectView(base + session.getSessionId() + "/home");
}