WIP
[demos/httpresources] / src / main / java / de / juplo / demo / httpresources / ProxyController.java
1 package de.juplo.demo.httpresources;
2
3 import org.springframework.stereotype.Controller;
4 import org.springframework.web.bind.annotation.PathVariable;
5 import org.springframework.web.bind.annotation.RequestMapping;
6
7
8 @Controller
9 public class ProxyController
10 {
11   @RequestMapping("/{path}.html")
12   public String controller(@PathVariable String path)
13   {
14     return path;
15   }
16 }