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 | |
---|
1 | package com.example.db.controller;
|
---|
2 |
|
---|
3 | import org.springframework.stereotype.Controller;
|
---|
4 | import org.springframework.web.bind.annotation.GetMapping;
|
---|
5 | import org.springframework.web.bind.annotation.RequestMapping;
|
---|
6 |
|
---|
7 | import javax.servlet.http.HttpServletRequest;
|
---|
8 |
|
---|
9 | @Controller
|
---|
10 | @RequestMapping("/logout")
|
---|
11 | public 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.