通过RestTemplate进行微服务间(通过服务名)的调用
样例:@Slf4j@RestController@RequestMapping(path = "/test")public class TestController {@Autowired@LoadBalancedprivate RestTemplate restTemplate;@ApiOperation(value = "test", no...
·
样例:
@Slf4j
@RestController
@RequestMapping(path = "/test")
public class TestController {
@Autowired
@LoadBalanced
private RestTemplate restTemplate;
@ApiOperation(value = "test", notes = "test")
@GetMapping(path = "/test")
public void test() {
Map<String, String> paramMap = new HashMap<>();
paramMap.put("channel", "11111");
paramMap.put("id", "22222");
String url = "http://SERVICE/auth-api/v1/inn/getInnRandomId?channel={channel}&id={id}";
ResponseEntity<JSONObject> responseEntity = restTemplate.getForEntity(url, JSONObject.class, paramMap);
if (responseEntity.getStatusCode().is2xxSuccessful()) {
Map<String, Object> innInfoBody = responseEntity.getBody();
innInfoBody.forEach((k, v) -> log.debug("key:" + k + "value:" + v));
} else {
log.debug("接口访问失败");
}
}
}
注意:
1.微服务间的访问可以通过http://服务名/映射链接 这种方式来访问
2.如果调用的服务存在上下文,那么则要通过http://服务名/服务上下文/映射链接 这种方式来访问。
3.当项目application.yml配置了服务上下文,但是在访问链接不想带上服务配置的上下文访问,可以通过以下配置方式来实现(增加eureka.instance.home-page-url-path配置)。
eureka:
client:
service-url:
defaultZone: http://172.11.62.183:6600/eureka/,http://172.11.62.184:6600/eureka/,http://172.11.62.185:6600/eureka/,http://172.25.62.50:7200/eureka/
instance:
home-page-url-path: ${server.servlet.context-path}
更多推荐
已为社区贡献1条内容
所有评论(0)