1、搭建Eurake注册中心工程
(1) 在pom.xml 添加Eurake 注册中心依赖包
(2)在spring boot 启动main方法中,添加@EnableEurekaServer注解
package com.example.eurekaserver;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
@SpringBootApplication
@EnableEurekaServer
public class EurekaServerApplication {
public static void main(String[] args) {
SpringApplication.run(EurekaServerApplication.class, args);
}
}
(3)、在properties配置文件中添加配置信息
spring.application.name=eureka-server
server.port=8761
#由于该应用为注册中心, 所以设置为false, 代表不向注册中心注册自己
eureka.client.register-with-eureka=false
#由于注册中心的职责就是维护服务实例, 它并不需要去检索服务, 所以也设置为 false
eureka.client.fetch-registry=false
2、编写Eurake服务提供者
(1) 在pom.xml 文件中添加Eurake依赖
(2)在spring boot启动类中添加@EnableDiscoveryClient 注解
(3)开放对应的restful方法
@RequestMapping("/hello")
public String hello(){
System.out.println("hello spring");
return "hello Spring";
}
(4)、在properties配置文件中添加配置信息
spring.application.name= eureka-client-user-service
eureka.client.serviceUrl.defaultZone=http://localhost:8761/eureka/
# 采用IP注册
eureka.instance.preferIpAddress=true
3、编写Eurake的消费者
(1)pom.xml 添加Eurake依赖
(2)配置RestTemplate类
package com.example.jdbc;
import org.springframework.cloud.client.loadbalancer.LoadBalanced;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.client.RestTemplate;
@Configuration
public class BeanConfiguration {
@Bean
@LoadBalanced
public RestTemplate getRestTemplate() {
return new RestTemplate();
}
}
(3)、编写调用方法
@RequestMapping("/callHello")
public String callHello() {
return restTemplate.getForObject("http://eureka-client-user-service/hello", String.class);
}