注册中心eruka可以注册php,Idea下SpringCloud2实验(一、Eureka-服务注册中心)

一、搭建Eureka注册中心

1、创建SpringBoot项目

adc24a2af6915dbfe535e0a2e3c2a60f.png

79c8b40aada16250e49a4fe8a4b8e27a.png

c32619557ca2169832b40260ed799642.png

2、配置文件

2.1pom.xml

xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

4.0.0

org.springframework.boot

spring-boot-starter-parent

2.1.4.RELEASE

com.jane

springcloud-eureka

0.0.1-SNAPSHOT

springcloud-eureka

Demo project for Spring Boot

1.8

Greenwich.SR1

org.springframework.cloud

spring-cloud-starter-netflix-eureka-server

org.springframework.boot

spring-boot-starter-test

test

org.springframework.cloud

spring-cloud-dependencies

${spring-cloud.version}

pom

import

org.springframework.boot

spring-boot-maven-plugin

2.2 启动文件

package com.jane.springcloudeureka;

import org.springframework.boot.SpringApplication;

import org.springframework.boot.autoconfigure.SpringBootApplication;

import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;

@SpringBootApplication

@EnableEurekaServer

public class SpringcloudEurekaApplication {

public static void main(String[] args) {

SpringApplication.run(SpringcloudEurekaApplication.class, args);

}

}

2.3 application.properties

server.port=6001

eureka.instance.hostname=127.0.0.1

eureka.instance.prefer-ip-address=true

eureka.client.service-url.defaultZone=http://${eureka.instance.hostname}:${server.port}/eureka/

eureka.client.register-with-eureka=false

eureka.client.fetch-registry=false

三、启动,看到如下页面,此时还没有注册服务

8510b3180a2b5260b3e8be4ca8cf9b01.png

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值