由於我從jsp頁面的超鏈接訪問註銷servlet,因此我遇到了代碼問題。HTTP方法GET不受此URL支持
Jsp頁面鏈接:
HREF = 「/註銷」
註銷的Servlet:
public class logOut extends HttpServlet{
public void doGET(HttpServletRequest req, HttpServletResponse resp)
throws IOException {
resp.setContentType("text/html");
System.out.println("log out servlet");
HttpSession session = req.getSession(false);
if (session != null) {
session.invalidate();
}
resp.sendRedirect("/signin.jsp");
}
}
,但我有以下錯誤:
HTTP ERROR 405
Problem accessing /logout. Reason:
HTTP method GET is not supported by this URL
請幫我.....
我認爲方法名應該是doGet()而不是doGET()。 (我不確定) – Shekhar
o非常感謝你...我的錯誤.... – ReporterX