SpringCloud 学习笔记------服务的注册和发现

      声明,老师讲过眼里过千遍不如手里过一遍。这个真的只是我的学习笔记,只是写个我自己看的,要是有雷同之处,海涵。想看大牛的博客,请移步这里http://blog.csdn.net/forezp/article/details/69788938

SpringCloud 有很多组件,本篇主要介绍Eureka组件的使用。

    Eureka分为两个模块,即Server和Client。

第一,注册中心的搭建

    首先创建一个maven项目,本人使用idea工具,其他工具的创建方式大同小异,主要是pom.xml文件的异同。SpringCloud 学习笔记------服务的注册和发现_第1张图片SpringCloud 学习笔记------服务的注册和发现_第2张图片

    pom.xml文件如下:



	4.0.0

	com.fangxing.springcloud
	euruka-server
	0.0.1-SNAPSHOT
	jar

	euruka-server
	Demo project for Eureka Server

	
	
		org.springframework.boot
		spring-boot-starter-parent
		1.4.0.RELEASE
		
	

	
		UTF-8
		1.8
	

	
		
		
			org.springframework.cloud
			spring-cloud-starter-eureka-server
		
		
			org.springframework.boot
			spring-boot-starter-test
			test
		
	

	
	
		
			
				org.springframework.cloud
				spring-cloud-dependencies
				Camden.SR3
				pom
				import
			
		
	

	
		
			
				org.springframework.boot
				spring-boot-maven-plugin
			
		
	

    然后配置application.yml文件信息。

server.port=8081
#访问端口号
eureka.instance.hostname=localhost
#表示设置该服务注册中心的hostname
eureka.client.register-with-eureka=false
#此项默认为true。这项表示向服务注册中心注册本应用,也就是eureka自己注册自己,需要禁止
eureka.client.fetch-registry=false
#不主动去检索其他服务,做好自己维护服务的本职工作即可
eureka.client.service-url.defaultZone=http://${eureka.instance.hostname}:${server.port}/eureka/

    其次在启动类上加@EnableEurekaServer标签。

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;

@EnableEurekaServer
@SpringBootApplication
public class EurekaserverApplication {

	public static void main(String[] args) {
		SpringApplication.run(EurekaserverApplication.class, args);
		System.out.println("hello world");
	}
}

    最后浏览器输入http://localhost:8081/就能访问到eureka的主页了。

SpringCloud 学习笔记------服务的注册和发现_第3张图片

    但是此时这里显示的是No instances available,因为我们还没有注册任何服务。

第二,创建一个服务

    首先还是创建一个maven项目,它的pom.xml文件是这样子的。



	4.0.0

	com.example
	webserver
	0.0.1-SNAPSHOT
	jar

	webserver
	Demo project for Spring Boot

	
		org.springframework.boot
		spring-boot-starter-parent
		1.4.0.RELEASE
		
		
	

	
		UTF-8
		UTF-8
		1.8
	

	
		
			org.springframework.cloud
			spring-cloud-starter-eureka
		
		
			org.springframework.boot
			spring-boot-starter-web
		

		
			org.springframework.boot
			spring-boot-starter-test
			test
		
	
	
		
			
				org.springframework.cloud
				spring-cloud-dependencies
				Camden.SR3
				
				pom
				import
			
		
	

	
		
			
				org.springframework.boot
				spring-boot-maven-plugin
			
		
	

	
		
			spring-milestones
			Spring Milestones
			https://repo.spring.io/milestone
			
				false
			
		
	

    然后修改application.yml文件。

eureka:
  client:
    serviceUrl:
      defaultZone: http://localhost:8081/eureka/ #这是刚才创建的eureka注册地址
server:
  port: 8082
spring:
  application:
    name: peoduceserver    #服务名称,这里写什么,注册中心就显示什么,以后调用这个服务就写这个名

    其次在项目的启动类上加@EnableEurekaClient标签。

@SpringBootApplication
@EnableEurekaClient
public class ProduceServerApplication {

	public static void main(String[] args) {
		SpringApplication.run(ProduceServerApplication.class, args);
		System.out.println("hello  ProduceServerApplication");
	}
}

    最后启动项目。

    这时刷新Erueka的页面,我们发现刚才的服务已经注册成功了。

SpringCloud 学习笔记------服务的注册和发现_第4张图片

第三,一些小问题

    在整个注册过程中也出现两个问题,但是都解决了。如下:

    a.项目启动时报错。虽然是一闪而过,项目也启动成功,但是看到了就要解决。

SpringCloud 学习笔记------服务的注册和发现_第5张图片

    原因很简单,因为手贱多敲了几个空格。

SpringCloud 学习笔记------服务的注册和发现_第6张图片

    这些地方明显颜色不一致,就是空格键所致。删掉就好了。

    b.如图,项目直接启动失败。报java.lang.NoSuchMethodError: org.springframework.boot.builder.SpringApplicationBuilder.([Ljava/lang/Object;)错。

SpringCloud 学习笔记------服务的注册和发现_第7张图片

    依赖包冲突,版本太高也怪我咯?解决办法,在pom.xml文件中修改版本号。

    第一处,将2.0.2改为1.4.0。


		org.springframework.boot
		spring-boot-starter-parent
		1.4.0.RELEASE
	        
		
	

    第二处,将Camden.SR1改为Camden.SR3。


		
			
				org.springframework.cloud
				spring-cloud-dependencies
				Camden.SR3
				
				pom
				import
			
		
	

第四、源码

获取源码https://github.com/bian1234/SpringCloudNote/tree/master


你可能感兴趣的:(springcloud)