重用Spring RequestMapping解析功能

时间:2014-08-05 11:06:57

标签: spring spring-mvc urlparse

我有一些属性,比如 /我/ {定制} / URL

我需要在运行时将{custom}替换为某个值

我知道Spring正在使用" @ RequestMapping"与@PathAttribute匹配的语法类似。

我想知道是否有一些我可以从Spring重用的类来实现我的需要。

1 个答案:

答案 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()