SpringMVC url 路径模式替换

SpringMVC url path pattern replacement

我在 SpringMVC 中有一个 url 路径模式,它看起来像:

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

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

/person/2/address/3 

在 SpringMvc 中使用实用程序方法?

UriTemplateclass。 您可以从 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));