source: src/main/java/com/example/baziproekt/web/HomeController.java@ 0e4d807

Last change on this file since 0e4d807 was 0e4d807, checked in by Ivona <ivonatapshanovska@…>, 10 months ago

Initial commit

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