Last change
on this file was 31d67c0, checked in by zlatko2810 <zlatko.stojanovski@…>, 2 years ago |
proekt
|
-
Property mode
set to
100644
|
File size:
466 bytes
|
Line | |
---|
1 | package com.proekt.Controller;
|
---|
2 |
|
---|
3 | import org.springframework.stereotype.Controller;
|
---|
4 | import org.springframework.ui.Model;
|
---|
5 | import org.springframework.web.bind.annotation.GetMapping;
|
---|
6 | import org.springframework.web.bind.annotation.RequestMapping;
|
---|
7 |
|
---|
8 | @Controller
|
---|
9 | @RequestMapping(value={"/", "/home"})
|
---|
10 | public class Home{
|
---|
11 |
|
---|
12 | @GetMapping
|
---|
13 | public String getViewHome(Model model) {
|
---|
14 |
|
---|
15 | model.addAttribute("bodyContent","home");
|
---|
16 | return "master-template";
|
---|
17 | }
|
---|
18 |
|
---|
19 | } |
---|
Note:
See
TracBrowser
for help on using the repository browser.