WIP
[demos/httpresources] / src / main / java / de / juplo / demo / httpresources / DemoController.java
1 package de.juplo.demo.httpresources;
2
3 import org.springframework.stereotype.Controller;
4 import org.springframework.ui.Model;
5 import org.springframework.web.bind.annotation.RequestMapping;
6 import org.springframework.web.bind.annotation.RequestParam;
7
8
9 @Controller
10 public class DemoController
11 {
12   @RequestMapping("/controller.html")
13   public String controller(
14       @RequestParam(defaultValue = "index") String template,
15       Model model)
16   {
17     model.addAttribute("template", template);
18     return template;
19   }
20 }