博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
springCloud-4.RestTemplat的使用(两个client之间的调用)
阅读量:5970 次
发布时间:2019-06-19

本文共 874 字,大约阅读时间需要 2 分钟。

hot3.png

1.启动eurka-server

294a77befbd3ce06dafdda266c5d4ae2739.jpg

2.在client端口8080编写一个hello world方法,并且能访问

96694dcefbb3339a0df4b457df0e3a53dc0.jpg

56e07fced13c2b94a38fdad697c1fe3f68d.jpg

90b92307cefb87545d3cff2a8fc94b316df.jpg

 

3.创建client-test1项目

336f5e58349f7eee5872e1e8730a089fbc1.jpg

4.调用EUREKA-CLIENT的index方法,新建RestTemplat启动配置

6805c21ce000965c205eb63fa6bb8702c0d.jpg

5.新建调用index类

package com.client.test.clienttest1;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RestController;import org.springframework.web.client.RestTemplate;/** * 描述: * * @outhor hekang * @create 2018-07-30 下午3:31 */@RestControllerpublic class ClientController {    @Autowired    private RestTemplate restTemplate;    @RequestMapping("getIndex")    public String getIndex(){        String res = restTemplate.getForObject("http://EUREKA-CLIENT/index", String.class);        return  res;    }}

 

6.启动,访问http://localhost:8081/getIndex,测试

注册成功:

9ce636ef6a74f1388935cc3a68fc3164f9a.jpg

 

访问http://localhost:8081/getIndex   成功打印

f6b2802515c8afe6ec901f0770209c0760f.jpg

 

 

转载于:https://my.oschina.net/u/1046143/blog/1919724

你可能感兴趣的文章
(基础篇)PHP获取时间、时间戳的各种格式写法汇总
查看>>
JAVA泛型详解2 转载
查看>>
div+CSS编程技巧
查看>>
Android 8.0 Settings新添加的重写getMetricsCategory
查看>>
#!/usr/bin/env python与#!/usr/bin/python的区别
查看>>
TSM对Oracle数据库备份脚本
查看>>
了解HAProxy原理及参数
查看>>
基于开源技术的上网行为管理实现方案
查看>>
Python学习笔记四(Python OS模块)
查看>>
Google Glass是工具不是玩具
查看>>
f_bfree和f_bavail的区别
查看>>
Android系统默认Home应用程序(Launcher)的启动过程源码分析
查看>>
C# cs文件表头模版
查看>>
多线程实例
查看>>
C,C++经典问题
查看>>
转:ECharts图表组件之简单关系图:如何轻松实现另类站点地图且扩展节点属性实现点击节点页面跳转...
查看>>
开发kendo-ui弹窗组件
查看>>
[LeetCode] Single Number 单独的数字
查看>>
Android——Intent动作汇总(转)
查看>>
Android根据baidu Android定位SDK实现定位
查看>>