SpringBoot项目中URL Builder使用
背景
项目中对URL进行操作的时候,用string的各种基础方法 和 if else去搞,实在"优雅"。
啊呸!
springframework.web
import org.springframework.web.util.UriComponentsBuilder;
...
return UriComponentsBuilder.fromUriString(url).queryParam(key, value).build().toUri();