source: Prototype Application/Paw5/src/main/java/finki/paw5/web/controllers/HomeController.java@ f0232fb

main
Last change on this file since f0232fb was f0232fb, checked in by trajchevaM <118018439+trajchevaM@…>, 17 months ago

login and home

  • Property mode set to 100644
File size: 455 bytes
Line 
1package finki.paw5.web.controllers;
2
3import org.springframework.stereotype.Controller;
4import org.springframework.web.bind.annotation.GetMapping;
5import org.springframework.web.bind.annotation.RequestMapping;
6
7@Controller
8@RequestMapping("/home")
9public class HomeController {
10
11 @GetMapping
12 public String getHomePage(){
13 return "home";
14 }
15 @GetMapping("/aboutUs")
16 public String getSuccessPage(){
17 return "/aboutUs";
18 }
19}
Note: See TracBrowser for help on using the repository browser.