source: source/src/main/java/com/example/db/controller/LogoutController.java

Last change on this file was bc0eeb4, checked in by Evgenija2000 <eva_nikolaevska@…>, 2 years ago

all files

  • Property mode set to 100644
File size: 485 bytes
Line 
1package com.example.db.controller;
2
3import org.springframework.stereotype.Controller;
4import org.springframework.web.bind.annotation.GetMapping;
5import org.springframework.web.bind.annotation.RequestMapping;
6
7import javax.servlet.http.HttpServletRequest;
8
9@Controller
10@RequestMapping("/logout")
11public class LogoutController {
12
13 @GetMapping
14 public String logout(HttpServletRequest request) {
15 request.getSession().invalidate();
16 return "redirect:/login";
17 }
18}
19
Note: See TracBrowser for help on using the repository browser.