我正在尝试完成以下操作(如果可能)。

我在localhost:8080上有一个页面应用程序,并且即使用户输入,当前所有内容都位于localhost:8080/上:localhost:8080/signIn

它进行客户端路由,以便您在进入localhost:8080/后可以单击一个按钮,然后转到localhost:8080/signIn

有没有一种方法可以使用springboot来允许用户传入的任何内容,而无需使其自动重定向到localhost:8080/(始终返回单个页面-index.html)?

谢谢!

最佳答案

试试这个

@Controller
@RequestMapping("/")
public class AnythingController{

    @RequestMapping(value="**",method = RequestMethod.GET)
    public String getAnything(){
        // your code
    }
}

10-05 22:39
查看更多