使用format优雅的动态替换请求参数

使用format优雅的动态替换请求参数,第1张

使用format优雅的动态替换请求参数 使用format优雅的动态替换请求参数

在实际开发中,请求的参数常常要进行动态的拼接,使用format可以优雅的进行拼接。

@Test
public void testStrFormatDemo(){
    String testUrl = "http://localhost:8080/test?name=%s";
    String name = "cay";
    String url = String.format(testUrl, name);
    logger.info("替换后的字符串:{}", url);
}

接着就可以搭配yaml文件使用了

testUrl: http://localhost:8080/test?name=%s

使用restTemplate发送请求

//获取yaml文件里的值
@Value("${testUrl}") 
private String testUrl;
@Autowired
private RestTemplate restTemplate;

public void testStrFormat(){
    HttpHeaders httpHeaders = new HttpHeaders();
    httpHeaders.set("Accept", "application/json");
    httpHeaders.set("Content-Type", "application/json; charset=UTF-8");
    HttpEntity entity = new HttpEntity<>(httpHeaders);
    String name = "cay";
    String url = String.format(testUrl, name);
    logger.info("替换后的字符串:{}", url);
    
    //为了防止restTemplate.exchange()飘黄,使用的另一种方法,没有强迫症的可以使用普通的方法
    ParameterizedTypeReference> typeReference1 = new ParameterizedTypeReference>() {
    };
    ResponseEntity> resultPostCt = restTemplate.exchange(url, HttpMethod.GET, entity,
                                                                             typeReference1);
    
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5717446.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存