搭建springCloud遇到的问题

最近在学习spring cloud ,尝试自己搭建简单的微服务框架
遇到一些问题:
1、pom文件提示找不到部分jar包
maven本地仓库可能没有需要的jar包,我的maven的setting.xml文件配置的是阿里云的网络仓库,但是也有可能出现jar包版本不全的问题,因此我将maven中的网络仓库改为多个仓库


		alimaven
		aliyun maven
		http://maven.aliyun.com/nexus/content/groups/public/
		central
	
	
		alimaven
		central
		aliyun maven
		http://maven.aliyun.com/nexus/content/repositories/central/
	
	 
	
		ibiblio
		central
		Human Readable Name for this Mirror.
		http://mirrors.ibiblio.org/pub/mirrors/maven2/
	
	
		jboss-public-repository-group
		central
		JBoss Public Repository Group
		http://repository.jboss.org/nexus/content/groups/public
	
	 
	
		central
		Maven Repository Switchboard
		http://repo1.maven.org/maven2/
		central
	
	
		repo2
		central
		Human Readable Name for this Mirror.
		http://repo2.maven.org/maven2/
	

2、搭建erueka注册中心时 使用properties文件启动没问题,改为yml文件启动后 端口号不使用配置的8761 而是自动更改为8080
问题原因应该是版本问题,初次使用,不太懂版本的配置
springcloud我开始使用的版本是Finchley.SR1,上边的spring-boot-starter-parent版本是1.5.6.RELEASE,就出现了这个问题
后将springcloud版本改为Dalston.SR3就解决了这个问题
搭建springCloud遇到的问题_第1张图片

你可能感兴趣的:(微服务)