gpt4 book ai didi

Java休息实用程序: Elegant way to built rest urls

转载 作者:行者123 更新时间:2023-12-01 17:48:44 24 4
gpt4 key购买 nike

目前,我正在使用字符串连接构建网址。

String url = "http://localhost:8080/bo/" + docId;

HttpEntity<String> httpEntity = this.handleJWT();

restTemplate
.exchange(
url,
HttpMethod.DELETE,
httpEntity,
Void.class
);

使用java构建rest url有更优雅的吗?

最佳答案

您还可以使用UriComponentsBuiler

String url = "http://localhost:8080/bo/{docId}"
UriComponentsBuilder
.fromHttpUrl(url)
.buildAndExpand(docId)
.toUriString();

并且 url 应从属性注入(inject)。

关于Java休息实用程序: Elegant way to built rest urls,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52645477/

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