gpt4 book ai didi

java - 匹配以某个路径元素开头的任何 url

转载 作者:行者123 更新时间:2023-12-02 03:37:31 26 4
gpt4 key购买 nike

我正在使用 Spring Boot v1.3.3.RELEASE,并且想编写一个可以映射到以下任意项的 Web 服务:

  • /foo
  • /foo/a
  • /foo/a/b
  • /foo/a/b/c
  • /栏/d
  • /栏/d/e
  • ...

所以基本上任何以 /foo/bar 开头的东西,后面可以有任意数量的路径元素。

我在想这样的事情:

@RequestMapping("/{path:(foo|bar)(/[^/]+?)*}")
@ResponseBody
public String doStuff(final String path) throws Exception
{
// Do stuff with path
}

但是好像不行。有什么想法吗?

最佳答案

您不能在 PathVariable 中使用多个路径段,但您可以编写如下内容:

@RequestMapping({"/foo/**", "/bar/**"})
@ResponseBody
public String doStuff(HttpServletRequest request) throws Exception
{
String path = request.getRequestURI();
// Do stuff with path
}

关于java - 匹配以某个路径元素开头的任何 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37255650/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com