package com.proekt.Controller; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; @Controller @RequestMapping(value={"/", "/home"}) public class Home{ @GetMapping public String getViewHome(Model model) { model.addAttribute("bodyContent","home"); return "master-template"; } }