我尝试使用多个查询字符串参数调用 Google API。奇怪的是,我找不到办法做到这一点。
这是我的 FeignClient :
@FeignClient(name="googleMatrix", url="https://maps.googleapis.com/maps/api/distancematrix/json")
public interface GoogleMatrixClient {
@RequestMapping(method=RequestMethod.GET, value="?key={key}&origins={origins}&destinations={destinations}")
GoogleMatrixResult process(@PathVariable(value="key") String key,
@PathVariable(value="origins") String origins,
@PathVariable(value="destinations") String destinations);
}
问题是 '&' 的字符RequestMapping value
被替换为&
如何避免这种情况?
谢谢 !