gpt4 book ai didi

SpringMVC url 路径模式替换

转载 作者:行者123 更新时间:2023-12-03 09:18:20 24 4
gpt4 key购买 nike

我在 SpringMVC 中有一个 url 路径模式,如下所示:

/person/{personId}/address/{addressId}

我有 personId = 2 和 addressId = 3有没有一种简单的方法可以让我生成

/person/2/address/3 

在 SpringMvc 中使用实用方法?

最佳答案

UriTemplate类(class)。您可以从 URL 构造自己的 UriTemplate,然后展开模板变量。

UriTemplate template = new UriTemplate("http://example.com/hotels/{hotel}/bookings/{booking}");
Map<String, String> uriVariables = new HashMap<String, String>();
uriVariables.put("booking", "42");
uriVariables.put("hotel", "1");
System.out.println(template.expand(uriVariables));

关于SpringMVC url 路径模式替换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35545665/

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