Last change
on this file was ed20c2c, checked in by HumaSejdini <humasejdini12@…>, 2 years ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
483 bytes
|
Line | |
---|
1 | package com.example.baza.web;
|
---|
2 |
|
---|
3 |
|
---|
4 | import org.springframework.stereotype.Controller;
|
---|
5 | import org.springframework.web.bind.annotation.GetMapping;
|
---|
6 | import org.springframework.web.bind.annotation.RequestMapping;
|
---|
7 |
|
---|
8 | import javax.servlet.http.HttpServletRequest;
|
---|
9 |
|
---|
10 | @Controller
|
---|
11 | @RequestMapping("/logout")
|
---|
12 | public class LogoutController {
|
---|
13 |
|
---|
14 | @GetMapping
|
---|
15 | public String logout(HttpServletRequest request)
|
---|
16 | {
|
---|
17 | request.getSession().invalidate();
|
---|
18 | return "redirect:/home";
|
---|
19 | }
|
---|
20 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.