Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.cloud.context.properties.ConfigurationPropertiesBeans]: Factory method 'configurationPropertiesBeans' threw exception;
SpringCloud在建立eureka-server的时候报这个错,估计是springboot和springCloud两者版本不兼容的缘故,降低SpringBoot版本,再次尝试:
<spring-boot-dependencies.version>2.1.2.RELEASE</spring-boot-dependencies.version>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot-dependencies.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
降低版本后尝试启动eureka项目,成功: