You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
871 B
29 lines
871 B
package servlet.admin;
|
|
|
|
import java.io.IOException;
|
|
import javax.servlet.ServletException;
|
|
import javax.servlet.annotation.WebServlet;
|
|
import javax.servlet.http.HttpServlet;
|
|
import javax.servlet.http.HttpServletRequest;
|
|
import javax.servlet.http.HttpServletResponse;
|
|
import javax.servlet.http.HttpSession;
|
|
|
|
/**
|
|
* Servlet implementation class LoginOut
|
|
*/
|
|
@WebServlet("/admin/logOut")
|
|
public class LoginOut extends HttpServlet {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@Override
|
|
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
|
|
// TODO Auto-generated method stub
|
|
HttpSession session = req.getSession();
|
|
if(session.getAttribute("admin") != null) {
|
|
session.removeAttribute("admin");
|
|
}
|
|
resp.sendRedirect(req.getContextPath() +"/adminLogin.html");
|
|
}
|
|
|
|
}
|