以下解决方案在C#中提供。我想知道Java和jersey类中是否存在类似的解决方案。
Given a Uri and a UriTemplate, how to get template parameter values?
答案 0 :(得分:0)
它甚至被称为UriTemplate:
https://jersey.java.net/apidocs/2.17/jersey/org/glassfish/jersey/uri/UriTemplate.html
.match()
它甚至具有相同的String uri = "/product-catalogue/categories/foo/products/bar";
Map<String, String> parameters = new HashMap<>();
uriTemplate.match(uri, parameters);
方法:
{{1}}