我需要在运行时将{custom}替换为某个值
我知道Spring正在使用" @ RequestMapping"与@PathAttribute匹配的语法类似。
我想知道是否有一些我可以从Spring重用的类来实现我的需要。
答案 0 :(得分:2)
一个很好的选择是使用UriComponentsBuilder - 请参阅此处的参考:http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/web/util/UriComponentsBuilder.html
UriComponentsBuilder.fromPath("/test/{one}/{two}").buildAndExpand(map).toUriString()