参考地址:https://www.cnblogs.com/sam-uncle/p/8954401.html
server.port=1111
spring.application.name=eureka-service
eureka.instance.hostname=localhost
eureka.client.register-with-eureka=false
eureka.client.fetch-registry=false
eureka.client.serviceUrl.defaultZone=http://${eureka.instance.hostname}:${server.port}/eureka
fetch-registry: 检索服务选项,当设置为True(默认值)时,会进行服务检索,注册中心不负责检索服务。
register-with-eureka: 服务注册中心也会将自己作为客户端来尝试注册自己,为true(默认)时自动生效
eureka.client.serviceUrl.defaultZone是一个默认的注册中心地址。配置该选项后,可以在服务中心进行注册
启动项目,访问localhost:1111可看到注册服务页面
server.port=9092
spring.application.name=hello-service
eureka.client.serviceUrl.defaultZone=http://localhost:1111/eureka
@RestController
public class HelloController {
@RequestMapping("/hello")
public String hello() {
System.out.println("==============service================");
return "hello,this is hello-service";
}
}
server.port=9998
spring.application.name=hello-consumer
eureka.client.serviceUrl.defaultZone=http://localhost:1111/eureka
@RestController
public class ConsumerController {
//这里注入的restTemplate就是在com.sam.ConsumerApp中通过@Bean配置的实例
@Autowired
RestTemplate restTemplate;
@RequestMapping("/hello-consumer")
public String helloConsumer() {
//调用hello-service服务,注意这里用的是服务名,而不是具体的ip+port
restTemplate.getForObject("http://hello-service/hello", String.class);
return "hello consumer finish !!!";
}
@RequestMapping("/getUsers1")
public String getUsers1() {
//调用hello-service服务,注意这里用的是服务名,而不是具体的ip+port
return restTemplate.getForObject("http://userloginservice/findUsers", String.class);
}
}
打开网页,访问:localhost:9998/ hello-consumer,页面输出:hello consumer finish !!!
同时在eureka-service控制台,看到hello() 方法被调用