目標(biāo):
創(chuàng)新互聯(lián)公司是一家專業(yè)提供忻州企業(yè)網(wǎng)站建設(shè),專注與成都做網(wǎng)站、網(wǎng)站建設(shè)、H5開發(fā)、小程序制作等業(yè)務(wù)。10年已為忻州眾多企業(yè)、政府機構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)的建站公司優(yōu)惠進行中。1、配置pom文件:在默認(rèn)依賴的基礎(chǔ)之上增加下面依賴;
org.springframework.cloud spring-cloud-starter-netflix-eureka-server
2、配置yml文件;
spring:
application:
name: eureka-server
server:
port: 1025
eureka:
instance:
hostname: eureka1
client:
serviceUrl:
defaultZone: 自己服務(wù)器ip:1025/eureka
register-with-eureka: false
fetch-registry: false
server:
enable-self-preservation: false
3、啟動類加注解
這樣eureka 服務(wù)項目就創(chuàng)建好了,啟動項目,ok.
1、配置pom文件:在默認(rèn)依賴的基礎(chǔ)之上增加下面依賴;
org.springframework.cloud spring-cloud-starter-netflix-eureka-server
2、配置yml文件;
eureka:
client:
service-url:
defaultZone: 自己服務(wù)器ip:1025/eureka
registry-fetch-interval-seconds: 40
instance:
lease-renewal-interval-in-seconds: 40
spring:
application:
name: item-service
server:
port: 8001
3、啟動類加注解
4、創(chuàng)建測試接口
@RestController
@RequestMapping("/v1/service")
public class ServiceController {
@GetMapping("/info")
public String getInfo() {
return "service方返回數(shù)據(jù)!??!";
}
}
5、這樣eureka 被調(diào)用項目就創(chuàng)建好了,啟動項目,ok.
6、訪問一下頁面看看注冊效果
1、配置pom文件:在默認(rèn)依賴的基礎(chǔ)之上增加下面依賴;
org.springframework.cloud spring-cloud-starter-netflix-eureka-serverorg.springframework.cloud spring-cloud-starter-openfeign2.0.1.RELEASE
2、配置yml文件;
eureka:
client:
service-url:
defaultZone: 自己服務(wù)器ip:1025/eureka
registry-fetch-interval-seconds: 40
instance:
lease-renewal-interval-in-seconds: 40
server:
port: 8002
spring:
application:
name: item-client
3、啟動類加注解
4、創(chuàng)建調(diào)用類、調(diào)用方法
@FeignClient(name = "item-service")
public interface PlatformMerchantsClient {
@GetMapping(value = "/v1/service/info")
String getInfo();
}
5、創(chuàng)建測試接口
@RestController
@RequestMapping("/v1/client")
public class ClientController {
private final PlatformMerchantsClient platformMerchantsClient;
public ClientController(PlatformMerchantsClient platformMerchantsClient) {
this.platformMerchantsClient = platformMerchantsClient;
}
@GetMapping("/info")
public String getInfo() {
return platformMerchantsClient.getInfo();
}
}
6、postman 請求接口
調(diào)用成功!OK
你是否還在尋找穩(wěn)定的海外服務(wù)器提供商?創(chuàng)新互聯(lián)www.cdcxhl.cn海外機房具備T級流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確流量調(diào)度確保服務(wù)器高可用性,企業(yè)級服務(wù)器適合批量采購,新人活動首月15元起,快前往官網(wǎng)查看詳情吧