1

我真的不知道如何在春季继续进行。

我有一个 URL https://test.payu.in/merchant/postservice.php?form=2,我必须使用一些参数调用它并使用结果。

我怎么能用 Spring 做到这一点?

4

1 回答 1

4

您可以使用RestTemplate,它支持编组、解组、可变分辨率等。

例如,您必须执行与此类似的操作:

Map<String, String> vars = new HashMap<String, String>();
vars.put("hotel", "42");
vars.put("booking", "21");
String result = 
    restTemplate.getForObject("http://example.com/hotels/{hotel}/bookings/{booking}", String.class, vars);

更多信息:

于 2013-09-20T12:25:04.517 回答