package com.example.baziproekt.web; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import javax.servlet.http.HttpServletRequest; @Controller @RequestMapping({"/","/home"}) public class HomeController { @GetMapping public String getHomePage(HttpServletRequest request) { request.getSession().setAttribute("korisnik",request.getRemoteUser()); return "home"; } }