SpringBoot项目中URL Builder使用

背景

项目中对URL进行操作的时候,用string的各种基础方法 和 if else去搞,实在"优雅"。
啊呸!

springframework.web

import org.springframework.web.util.UriComponentsBuilder;
...
return UriComponentsBuilder.fromUriString(url).queryParam(key, value).build().toUri();

Ref

https://stackoverflow.com/a/37062788/5824202

posted @ 2022-06-16 23:47  talentzemin  阅读(224)  评论(0编辑  收藏  举报