source: source/freeparkingspace/src/main/java/com/proekt/Controller/Blank.java@ 31d67c0

Last change on this file since 31d67c0 was 31d67c0, checked in by zlatko2810 <zlatko.stojanovski@…>, 22 months ago

proekt

  • Property mode set to 100644
File size: 549 bytes
Line 
1package com.proekt.Controller;
2
3
4import org.springframework.stereotype.Controller;
5import org.springframework.ui.Model;
6import org.springframework.web.bind.annotation.GetMapping;
7
8@Controller
9public class Blank {
10
11
12 @GetMapping("/contact")
13 public String getViewHome(Model model) {
14
15 model.addAttribute("bodyContent","contact");
16 return "master-template";
17 }
18 @GetMapping("/about")
19 public String getViewHome2(Model model) {
20
21 model.addAttribute("bodyContent","about");
22 return "master-template";
23 }
24
25}
Note: See TracBrowser for help on using the repository browser.