Open han343626 opened 3 years ago
` // logout path check if (logoutPath!=null && logoutPath.trim().length()>0 && logoutPath.equals(servletPath)) {
// remove cookie SsoWebLoginHelper.removeSessionIdByCookie(req, res); // redirect logout String link = req.getRequestURL().toString().replace(logoutPath,""); String logoutPageUrl = ssoServer.concat(Conf.SSO_LOGOUT) + "?" + Conf.REDIRECT_URL + "=" + link; res.sendRedirect(logoutPageUrl); return; }
`
` // logout path check if (logoutPath!=null && logoutPath.trim().length()>0 && logoutPath.equals(servletPath)) {
`