SpringCloud基础父工程创建
1.依赖
注意这是在父工程中的配置
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.4.RELEASE</version>
</parent>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Greenwich.SR1</version>
<type>pom</type>
<!--通过 scope 的import可以继承 spring-cloud-dependencies 工程中的依赖
这样就我们后期引入springcloud的组件就不需要写版本号-->
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
注意:SpringBoot和SpringCloud的版本是有关联的,版本关系如下:
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-utgCwbU1-1607397172963)(D:\工作\产出\md\畅购api\SpringCloud\img\image-20200409180548012.png)]
Eureka
1.Eureka服务端
①.依赖
注意这个工程要依赖SpringCloud的基础父工程的
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>
②配置
server:
port: 10086
spring:
application:
name: eureka-server
eureka:
client:
service-url:
# eureka 服务地址,如果是集群的话;需要指定其它集群eureka地址
defaultZone: http://127.0.0.1:10086/eureka
# 是否把自己注册到 Eureka服务端
register-with-eureka: false
# 是否拉取Eureka服务端上的服务列表
fetch-registry: false
③启动类上加@EnableEurekaServer注解
@SpringBootApplication
@EnableEurekaServer
public class EurekaServerApplication {
public static void main(String[] args) {
SpringApplication.run(EurekaServerApplication.class,args);
}
}
④访问
http://localhost:10086/
2.Eureka客户端
①.依赖
注意这个工程要依赖SpringCloud的基础父工程的
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
②配置
server:
port: 8083
spring:
application:
name: user-consumer
eureka:
client:
service-url:
# eureka 服务地址,如果是集群的话;需要指定其它集群eureka地址
defaultZone: http://127.0.0.1:10086/eureka
# 是否注册到服务端
register-with-eureka: true
# 是否拉取服务列表
fetch-registry: true
instance:
ip-address: 127.0.0.1 # 服务的ip地址
prefer-ip-address: true # 启用ip地址注册
③启动类上加@EnableDiscoveryClient注解
@SpringBootApplication
@EnableDiscoveryClient
public class UserConsumerApplication {
public static void main(String[] args) {
SpringApplication.run(UserConsumerApplication.class,args);
}
}
注意:@EnableDiscoveryClient可以使用@EnableEurekaClient来代替,但是一般都使用@EnableDiscoveryClient。因为前者支持更多的注册中心,而后者只支持Eureka做为注册中心
到这里为止就可以把服务都注册到Eureka服务端。下面用最简单的服务发现方式来进行测试服务间的相互调用。后期是不会采用这种写法的。
④服务的相互调用-后期会有其他方式代替
在消费端
import com.itheima.domain.User;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cloud.client.ServiceInstance;
import org.springframework.cloud.client.discovery.DiscoveryClient;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.client.RestTemplate;
import java.util.ArrayList;
import java.util.List;
@RestController
public class UserController {
@Autowired
private DiscoveryClient discoveryClient;
@Autowired
private RestTemplate restTemplate;
@RequestMapping("/findList")
public List<User> findList(){
List<ServiceInstance> instances = discoveryClient.getInstances("user-server");
ServiceInstance serviceInstance = instances.get(0);
String host = serviceInstance.getHost();
int port = serviceInstance.getPort();
String url = "http://"+host+":"+port+"/"+"/findList";
List<User> forObject = restTemplate.getForObject(url, List.class);
System.out.println(forObject);
return forObject;
}
}
注意:DiscoveryClient导包的时候别导错了。
3.Eureka服务的高可用配置
将Eureka Server作为一个服务注册到其它Eureka Server,这样多个Eureka Server之间就能够互相发现对方,同步服务,实现Eureka Server集群。
####1.配置文件中配置其他的Eureka Server的地址,并且配置去注册
server:
port: ${port:10086}
spring:
application:
name: eureka-server
eureka:
client:
service-url:
# eureka 服务地址,如果是集群的话;需要指定其它集群eureka地址
defaultZone: ${defaultZone:http://127.0.0.1:10086/eureka} # 指定其他Eureka Server的地址
# 注册自己
register-with-eureka: true
# 拉取服务
fetch-registry: true
4.相关配置
1.使用ip地址访问注册 Eureka客户端配置
默认注册时使用的是主机名或者localhost,如果想用ip进行注册,添加配置如下:
eureka:
instance:
ip-address: 127.0.0.1 # 服务的ip地址
prefer-ip-address: true # 启用ip地址访问
2.服务续约相关配置 Eureka客户端配置
在注册服务完成以后,服务提供者会维持一个心跳(定时向EurekaServer发起Rest请求),告诉EurekaServer:“我 还活着”。这个我们称为服务的续约(renew); 有两个重要参数可以修改服务续约的行为;可以在 user-service 中添加如下配置项:
eureka:
instance:
lease-expiration-duration-in-seconds: 90
lease-renewal-interval-in-seconds: 30
lease-renewal-interval-in-seconds:服务续约(renew)的间隔,默认为30秒
lease-expiration-duration-in-seconds:服务失效时间,默认值90秒
也就是说,默认情况下每隔30秒服务会向注册中心发送一次心跳,证明自己还活着。如果超过90秒没有发送心跳, EurekaServer就会认为该服务宕机,会定时(eureka.server.eviction-interval-timer-in-ms设定的时间)从服务列表 中移除,这两个值在生产环境不要修改,默认即可。
3.获取服务列表间隔 Eureka客户端配置
当服务消费者启动时,会检测 eureka.client.fetch-registry=true 参数的值,如果为true,则会从Eureka Server服务的列表拉取只读备份,然后缓存在本地。并且 每隔30秒 会重新拉取并更新数据。可以在 服务调用者 项目中通过下面的参数来修改:
eureka:
client:
registry-fetch-interval-seconds: 30
4.失效剔除和自我保护 相关配置 Eureka服务端配置
相关概念:
服务下线:
当服务进行正常关闭操作时,它会触发一个服务下线的REST请求给Eureka Server,告诉服务注册中心:“我要下线 了”。服务中心接受到请求之后,将该服务置为下线状态。
失效剔除 :
有时我们的服务可能由于内存溢出或网络故障等原因使得服务不能正常的工作,而服务注册中心并未收到“服务下 线”的请求。相对于服务提供者的“服务续约”操作,服务注册中心在启动时会创建一个定时任务,默认每隔一段时间 (默认为60秒)将当前清单中超时(默认为90秒)没有续约的服务剔除,这个操作被称为失效剔除。 可以通过 eureka.server.eviction-interval-timer-in-ms 参数对其进行修改,单位是毫秒。
自我保护 :
我们关停一个服务,很可能会在Eureka面板看到一条警告:
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-CYp6z6PH-1607397172964)(img\image-20200409212520139.png)]
这是触发了Eureka的自我保护机制。当服务未按时进行心跳续约时,Eureka会统计服务实例最近15分钟心跳续约的 比例是否低于了85%。在生产环境下,因为网络延迟等原因,心跳失败实例的比例很有可能超标,但是此时就把服务 剔除列表并不妥当,因为服务可能没有宕机。Eureka在这段时间内不会剔除任何服务实例,直到网络恢复正常。生 产环境下这很有效,保证了大多数服务依然可用,不过也有可能获取到失败的服务实例,因此服务调用者必须做好服 务的失败容错。 可以通过下面的配置来关停自我保护:
eureka:
server:
enable-self-preservation: false # 关闭自我保护模式(缺省为打开)