开篇:
我们将前面的springboot整合h2内存数据库,实现单元测试与数据库无关性提供的restful服务注册到spring cloud的eureka server上。
一、引入eureka的client
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
</dependencies> <dependency> <groupid>org.springframework.cloud</groupid> <artifactid>spring-cloud-starter-eureka</artifactid> </dependency> </dependencies> <dependencymanagement> <dependencies> <dependency> <groupid>org.springframework.cloud</groupid> <artifactid>spring-cloud-dependencies</artifactid> <version>camden.sr3</version> <type>pom</type> <scope> import </scope> </dependency> </dependencies> </dependencymanagement> |
二、添加配置文件
1
2
3
4
5
|
# spring boot服务注册到eureka server上的应用名称 spring.application.name=springboot-h2 eureka.instance.prefer-ip-address= true # eureka server注册服务的地址 eureka.client.service-url.defaultzone=http: //localhost:8761/eureka |
三、开启eureka client支持
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package com.chhliu.springboot.h2; import org.springframework.boot.springapplication; import org.springframework.boot.autoconfigure.springbootapplication; import org.springframework.cloud.netflix.eureka.enableeurekaclient; @springbootapplication @enableeurekaclient public class springbooth2application { public static void main(string[] args) { springapplication.run(springbooth2application. class , args); } } |
四、启动spring boot服务并验证
通过上面几个步骤,说明我们已经将spring boot的服务注册到了eureka server上了!
五、可能出现的问题
如果在服务注册的过程中,发现connection refused异常,如下:
有可能是hosts文件中没有加入如下映射关系
127.0.0.1 loaclhost
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:http://blog.csdn.net/liuchuanhong1/article/details/54666777