我有一个请求映射,它处理上下文之后的任何字符串,例如www.example.com/anystring
我按如下方式处理:
@RequestMapping(value="/{str}",method = RequestMethod.GET)
public String getApp(@PathVariable("str") String anyString,ModelMap model) {
//Do something
}
问题是我在我的应用中有2-3个网址,网址如下:www.example.com/about,www.example.com/contact等.
我为他们编写了Request Mappings,如下所示:
@RequestMapping("/about")
public String getAboutPage() {
return "about";
}
但很明显,因为我已经声明任何字符串应该由getApp()处理,所以getAboutPage()永远不会被执行.
如何从getApp()映射中排除/ about,/ contact etc.
我们显然可以在URL字符串中添加另一个关键字,但这在我的应用程序用例中是不可能的.
请帮助. 原文链接:https://www.f2er.com/spring/432070.html