我有一个名为“ logout.jsp”的JSP文件,我正尝试使用该文件注销Web应用程序:
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Logout</title>
</head>
<body>
<h1>Logout successful!</h1>
<%
session.invalidate();
response.sendRedirect("index.jsp");
%>
</body>
</html>
我在其他每个页面上都使用了一个链接,如下所示:
<a href="/WEB-INF/logout.jsp">Log out</a>
但是,每当我单击链接时,我都会收到一条错误消息:
Http Status 404 - Not Found
Type - Status Report
message - Not Found
description - The requested resource is not available
当我环顾四周并且似乎无法解决问题时,任何帮助将不胜感激
干杯