我如何RequestMapping正则表达式禁用任何单词?

时间:2018-05-23 14:04:52

标签: spring spring-mvc spring-boot

我使用spring boot + angularjs。由于我使用的是单页面应用程序,因此我将所有请求重定向到index.html。

@RequestMapping(value = "/**/{[path:[^\\.]*}")
public String redirect() {
    return "forward:/";
}

问题

我不想在此方向中包含像'api'这样的终点。我怎么能这样做?

例如端点:http://localhost:8080/application/api/getUsers

0 个答案:

没有答案