gpt4 book ai didi

java - 用于解析 URI 的 Spring 实用程序

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:13:31 33 4
gpt4 key购买 nike

我想使用现有的 Spring 功能从 URL 中提取路径变量和查询参数。我有一个路径格式字符串,它对 MVC @RequestMappingUriComponentsBuilder 有效。我也有一个实际的路径。我想从该路径中提取路径变量。

例如。

String format = "location/{state}/{city}";
String actualUrl = "location/washington/seattle";
TheThingImLookingFor parser = new TheThingImLookingFor(format);
Map<String, String> variables = parser.extractPathVariables(actualUrl);
assertThat(variables.get("state", is("washington"));
assertThat(variables.get("city", is("seattle"));

它类似于 UriComponentsBuilder 的逆函数,根据我对 Javadocs 的阅读,它没有任何解析功能。

最佳答案

这里是:

    String format = "location/{state}/{city}";
String actualUrl = "location/washington/seattle";
AntPathMatcher pathMatcher = new AntPathMatcher();
Map<String, String> variables = pathMatcher.extractUriTemplateVariables(format, actualUrl);
assertThat(variables.get("state"), is("washington"));
assertThat(variables.get("city"), is("seattle"));

关于java - 用于解析 URI 的 Spring 实用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26347868/

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