We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efad114 commit 42e7bf3Copy full SHA for 42e7bf3
src/main/java/org/frankframework/application/endpoints/FrontendForwardController.java
@@ -1,13 +1,13 @@
1
package org.frankframework.application.endpoints;
2
3
import org.springframework.stereotype.Controller;
4
+import org.springframework.web.bind.annotation.GetMapping;
5
import org.springframework.web.bind.annotation.PathVariable;
-import org.springframework.web.bind.annotation.RequestMapping;
6
7
@Controller
8
public class FrontendForwardController {
9
10
- @RequestMapping(value = "/{path:[^\\.]*}")
+ @GetMapping(value = "/{path:[^\\.]*}")
11
public String forward(@PathVariable String path) {
12
return "forward:/index.html";
13
}
0 commit comments