本文主要是介绍spring cloud 向eureka注册中心 注册consumer,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.pom配置文件
<!-- 注册eureka --><dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-eureka</artifactId></dependency><!-- 打印日志 --><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-actuator</artifactId></dependency>
2.resources文件:
server:port: 7901
user: userServicePath: http://localhost:7900/simple/
spring:application:name: ms-eureka-consumer
eureka:client:healthcheck:enabled: trueserviceUrl:defaultZone: http://ljf:123@localhost:8761/eurekainstance:prefer-ip-address: trueinstance-id: ${spring.application.name}:${spring.cloud.client.ipAddress}:${spring.application.instance_id:${server.port}}
test: nihao
3.启动类:
package com.ljf.weifuwu.springcloud.eureka.consumer;import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;/*** Hello world!**/
@SpringBootApplication
@EnableEurekaClient
public class ConsumerEurekaApp
{public static void main( String[] args ){SpringApplication.run(ConsumerEurekaApp.class, args);System.out.println( "eureka-consumer启动起来了!!!" );}
}
4.访问:
这篇关于spring cloud 向eureka注册中心 注册consumer的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!