From: Kai Moritz Date: Fri, 8 Jan 2021 14:35:13 +0000 (+0100) Subject: WIP X-Git-Tag: controller~1 X-Git-Url: https://juplo.de/gitweb/?p=demos%2Fhttpresources;a=commitdiff_plain;h=c1bf7dd19511d27e3a4caa44a88eb284c91acb36 WIP --- diff --git a/src/main/java/de/juplo/demo/httpresources/DemoController.java b/src/main/java/de/juplo/demo/httpresources/DemoController.java new file mode 100644 index 0000000..96020ff --- /dev/null +++ b/src/main/java/de/juplo/demo/httpresources/DemoController.java @@ -0,0 +1,20 @@ +package de.juplo.demo.httpresources; + +import org.springframework.stereotype.Controller; +import org.springframework.ui.Model; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestParam; + + +@Controller +public class DemoController +{ + @RequestMapping("/controller.html") + public String controller( + @RequestParam(defaultValue = "index") String template, + Model model) + { + model.addAttribute("template", template); + return template; + } +} diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index f889427..dd14ca8 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -4,4 +4,4 @@ juplo.http-resources.protocol-resolver.enabled=true spring.web.resources.static-locations"=classpath:/overwrite/,${origin},classpath:/fallback/ spring.thymeleaf.prefix=/ spring.thymeleaf.suffix=.html - +logging.level.de.juplo=DEBUG