<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-thymeleaf</artifactId>
+ </dependency>
<dependency>
<groupId>de.juplo</groupId>
<artifactId>http-resources</artifactId>
--- /dev/null
+package de.juplo.demo.httpresources;
+
+import org.springframework.stereotype.Controller;
+import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.RequestMapping;
+
+
+@Controller
+public class ProxyController
+{
+ @RequestMapping("/{path}.html")
+ public String controller(@PathVariable String path)
+ {
+ return path;
+ }
+}