注销的路径是http://localhost:8080/Choose_Course/login.do?loginoff=true
代码在loginAction里面:
这段
--------------
if (request.getParameter("loginoff") != null) {
            request.getSession().removeAttribute("id");
            request.getSession().invalidate();
            return mapping.findForward("./login.do");
        }