摘要: OpenFeign是一个另类的注册 引入pom文件 <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-openfeign</artifactId> </dependen 阅读全文
posted @ 2021-11-17 16:53 旅祸少年 阅读(530) 评论(0) 推荐(0) 编辑
摘要: 负载均衡就是往注册中心注册相同的东西? 当向注册中心注册时候 服务端 server: port: 8761 eureka: client: service-url: defaultZone: http://localhost:8761/eureka/ registerWithEureka: fals 阅读全文
posted @ 2021-11-17 15:53 旅祸少年 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 实现第三种方式需要先实现:自定义的RestTemplate 同时使用client代替端口主机名字 首先是实现 自定义 RestTemplate package com.example.demouseapi.controller; import org.springframework.cloud.cl 阅读全文
posted @ 2021-11-17 15:14 旅祸少年 阅读(232) 评论(0) 推荐(0) 编辑
摘要: 前提:注入 @Autowired private LoadBalancerClient loadBalancerClient; LoadBalancerClient:获取服务对象。 RestTemplate:产生请求。 代码 @RequestMapping("usesayhello2") @Resp 阅读全文
posted @ 2021-11-17 14:30 旅祸少年 阅读(354) 评论(0) 推荐(0) 编辑
摘要: 数据库操作 操作数据库 创建数据库:这是划分一块空间用力来存储相应数据,这是进行表操作的基础,也是数据库管理的基础 SHOW DATABASES :查看当前所有的数据库 CREATE DATABASE '数据库名字':建立一个数据库 USE '数据库名字':表示进入这个数据库 DROP DATABA 阅读全文
posted @ 2021-11-17 07:28 旅祸少年 阅读(118) 评论(0) 推荐(0) 编辑