搜索
查看
编辑修改
首页
UNITY
NODEJS
PYTHON
AI
GIT
PHP
GO
CEF3
JAVA
HTML
CSS
搜索
我家小花儿
这个屌丝很懒,什么也没留下!
关注作者
热门标签
jquery
HTML
CSS
PHP
ASP
PYTHON
GO
AI
C
C++
C#
PHOTOSHOP
UNITY
iOS
android
vue
xml
爬虫
SEO
LINUX
WINDOWS
JAVA
MFC
CEF3
CAD
NODEJS
GIT
Pyppeteer
article
热门文章
1
docker部署redis
2
idea 2024.2切换到旧版的UI_idea新ui界面怎么回到旧版本
3
Linux 音媒体小项目练手
4
android studio开发<十四> Unity3d调用安卓功能_在androidstudio中import com.unity3d.player.unityplay
5
阿里巴巴魔塔ModelScope Library-基于python的AI领域库
6
Java虚拟机的类加载机制_java虚拟机加载的是javac
7
maven:下载和安装_aide maven仓库
8
脉冲电子围栏系统介绍_脉冲电子围栏风险辨识及管控措施
9
遗传算法求解非线性方程组优化(MATLAB实现)
10
【Unity Android】Unity链接安卓手机调试_unity 手机调试
当前位置:
article
> 正文
spring-boot 2.0.3 与 spring-cloud-starter-eureka 1.4.4 版本冲突无法启动
作者:我家小花儿 | 2024-08-19 02:08:08
赞
踩
spring-cloud-starter-eureka 1.4.4
问题:spring-boot 2.0.3 与 spring-cloud-starter-eureka 1.4.4 版本冲突无法启动
22:16:02.228 [main] ERROR org.springframework.boot.SpringApplication - Application run failed
java.lang.NoSuchMethodError: org.springframework.boot.builder.SpringApplicationBuilder.<init>([Ljava/lang/Object;)V
at org.springframework.cloud.bootstrap.BootstrapApplicationListener.bootstrapServiceContext(
BootstrapApplicationListener.java:120
)
at org.springframework.cloud.bootstrap.BootstrapApplicationListener.onApplicationEvent(
BootstrapApplicationListener.java:84
)
at org.springframework.cloud.bootstrap.BootstrapApplicationListener.onApplicationEvent(
BootstrapApplicationListener.java:62
)
at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(
SimpleApplicationEventMulticaster.java:172
)
at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(
SimpleApplicationEventMulticaster.java:165
)
at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(
SimpleApplicationEventMulticaster.java:139
)
at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(
SimpleApplicationEventMulticaster.java:127
)
at org.springframework.boot.context.event.EventPublishingRunListener.environmentPrepared(
EventPublishingRunListener.java:74
)
at org.springframework.boot.SpringApplicationRunListeners.environmentPrepared(
SpringApplicationRunListeners.java:54
)
at org.springframework.boot.SpringApplication.prepareEnvironment(
SpringApplication.java:358
)
at org.springframework.boot.SpringApplication.run(
SpringApplication.java:317
)
at org.springframework.boot.SpringApplication.run(
SpringApplication.java:1255
)
at org.springframework.boot.SpringApplication.run(
SpringApplication.java:1243
)
at com.example.server1.HellApplication.main(
HellApplication.java:9
)
pom.xml
<?
xml version=
"1.0"
encoding=
"UTF-8"
?>
<
project xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<
modelVersion
>4.0.0</
modelVersion
>
<
groupId
>com.example</
groupId
>
<
artifactId
>server1</
artifactId
>
<
version
>0.0.1-SNAPSHOT</
version
>
<
packaging
>jar</
packaging
>
<
name
>server1</
name
>
<
description
>Demo project for Spring Boot</
description
>
<
parent
>
<
groupId
>org.springframework.boot</
groupId
>
<
artifactId
>spring-boot-starter-parent</
artifactId
>
<
version
>
2.0.3.RELEASE
</
version
>
<
relativePath
/>
<!-- lookup parent from repository -->
</
parent
>
<
properties
>
<
project.build.sourceEncoding
>UTF-8</
project.build.sourceEncoding
>
<
project.reporting.outputEncoding
>UTF-8</
project.reporting.outputEncoding
>
<
java.version
>1.8</
java.version
>
</
properties
>
<
dependencies
>
<
dependency
>
<
groupId
>org.springframework.boot</
groupId
>
<
artifactId
>spring-boot-starter</
artifactId
>
</
dependency
>
<
dependency
>
<
groupId
>org.springframework.boot</
groupId
>
<
artifactId
>spring-boot-starter-test</
artifactId
>
<
scope
>test</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>org.springframework.cloud</
groupId
>
<
artifactId
>spring-cloud-starter-
eureka
</
artifactId
>
<
version
>1.4.4.RELEASE</
version
>
</
dependency
>
<
dependency
>
<
groupId
>log4j</
groupId
>
<
artifactId
>log4j</
artifactId
>
<!-- <version>${log4j.version}</version> -->
</
dependency
>
</
dependencies
>
<
dependencyManagement
>
<
dependencies
>
<
dependency
>
<
groupId
>org.springframework.cloud</
groupId
>
<
artifactId
>spring-cloud-dependencies</
artifactId
>
<
version
>Brixton.SR5</
version
>
<
type
>
pom
</
type
>
<
scope
>import</
scope
>
</
dependency
>
</
dependencies
>
</
dependencyManagement
>
<
build
>
<
plugins
>
<
plugin
>
<
groupId
>org.springframework.boot</
groupId
>
<
artifactId
>spring-boot-
maven
-
plugin
</
artifactId
>
</
plugin
>
</
plugins
>
</
build
>
</
project
>
处理措施:
1. 把 spring-boot 版本改为 1.4.0
<
parent
>
<
groupId
>org.springframework.boot</
groupId
>
<
artifactId
>spring-boot-starter-parent</
artifactId
>
<
version
>1.4.0.RELEASE</
version
>
<
relativePath
/>
<!-- lookup parent from repository -->
</
parent
>
2. 把 spring-boot 版本改为 1.4.7
<
parent
>
<
groupId
>org.springframework.boot</
groupId
>
<
artifactId
>spring-boot-starter-parent</
artifactId
>
<
version
>1.4.7.RELEASE</
version
>
<
relativePath
/>
<!-- lookup parent from repository -->
</
parent
>
2. 把 spring-boot 版本改为 1.5.13;注意 与1.5.14 版本也不兼容。
<
parent
>
<
groupId
>org.springframework.boot</
groupId
>
<
artifactId
>spring-boot-starter-parent</
artifactId
>
<
version
>1.5.13.RELEASE</
version
>
<
relativePath
/>
<!-- lookup parent from repository -->
</
parent
>
spring boot 版本演信息
https://github.com/spring-projects/spring-boot/releases?after=v2.0.0.M3
https://github.com/spring-projects/spring-boot/tags
声明:
本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:
https://www.wpsshop.cn/w/我家小花儿/article/detail/1000350
推荐阅读
article
#
Spring
Cloud
Alibaba
Nacos
_
配置
中心与服务发现(四)_
nacos1
.x...
15-
Nacos
配置
管理-集群部署 16-
Nacos
配置
管理-课程总结 _
nacos1
.x的
springcloud
的
配置
...
赞
踩
article
微
服务
注册
中心
--
Eureka
_
windows
eureka
设置别名...
一、简介与架构
Eureka
是一个基于REST (Representational State Transfer)的
服务
,...
赞
踩
article
注册
中心
-
Eureka
基础篇_
eureka
.
client
.
fetchregistry
...
注册
中心
-
Eureka
基础篇文章目录
注册
中心
-
Eureka
基础篇前言项目环境1.什么是
注册
中心
?1.1 服务
注册
1....
赞
踩
article
SpringCloud
:
eureka
注册中心
配置
_
eureka
.
client
.
fetch
-reg...
eureka
:单节点
配置
的时候:
eureka
.
client
.register-with-
eureka
=falseeure...
赞
踩
article
关于
fetch
-
registry
.
eureka
.
fetch
-
registry
配置
...
关于
eureka
的两个
配置
:
eureka
.client.register-with-
eureka
//表示是否将自己注册...
赞
踩
article
Spring
Cloud
Eureka
--
Eureka
服务
端
挂
了
,
为什么
微
服务
还能调通?(原理分析)...
本文介绍
为什么
Eureka
挂
了
,但微
服务
还能调通。_
springcloud
注册中心
挂
了
服务
还能访问吗springclou...
赞
踩
article
Spring
Cloud
-
Eureka
注册中心配置_
springcloud
config
eur...
Spring
Cloud
简介1.简介
Spring
Cloud
是
Spring
旗下的项目之一,官网地址:http://pro...
赞
踩
article
Eureka...
Eureka 是 Netflix OSS 套件中关于服务注册和发现的解决方案,Spring Cloud 对 Eureka...
赞
踩
article
Spring
Cloud
--
Eureka
实现原理...
一般像这样的大企业都有好几轮面试,所以自己一定要花点时间去收集整理一下公司的背景,公司的企业文化,俗话说「知己知彼百战不...
赞
踩
article
全网最清晰
SpringCloud
-
Eureka
Client
流程
...
本文详细分析了SpringBoot中
Eureka
客户端的自动配置过程,包括组件加载、服务注册
流程
、定时任务和心跳续约,揭...
赞
踩
article
SpringCloud
中
Eureka
注册中心_
spring
cloud
euraka
官网...
SpringCloud
、
Eureka
SpringCloud
简介简介版本微服务场景模拟创建父工程服务提供者创建Module...
赞
踩
article
spring
cloud
注册中心-
eureka
_
spring
-
cloud
-
starter
-netfli...
一、
eureka
简介1、
eureka
.
client
.register-with-
eureka
: 对于同一个进程,既可以作...
赞
踩
article
SpringCloud-
Eureka
注册中心_“
spring
-
cloud
-
starter
-netfl...
以
Eureka
为注册中心搭建
spring
cloud
项目_“
spring
-
cloud
-
starter
-netflix-e...
赞
踩
article
SpringCloud
Eureka
(Netflix)_
spring
-
cloud
-
starter
-...
简介Euraka 用于服务注册和发现,是Netflix中的一个开源框架。它和 zookeeper、Consul一样,都是...
赞
踩
article
pom.xml中
maven
无法下载
spring
cloud
包问题_
spring
cloud
aliba...
*问题描述:**
spring
-
cloud
-starter-feign,
spring
-
cloud
-starter-eure...
赞
踩
article
SpringCloud-Netflix-04-
Eureka
注册中心_
spring
-
cloud
-st...
四、Netflix
Eureka
注册中心4.1 注册中心概述4.2 Netlfix
Eureka
概述4.2.1 Eu...
赞
踩
article
spring
cloud
——Eureka注册中心的客户端_
spring
-
cloud
-
starter
-n...
该文章指导如何在user-service项目中集成Eureka客户端。首先,需要在项目的pom.xml添加
spring
-...
赞
踩
article
SpringCloud注册Eureka_
spring
-
cloud
-
starter
-
netflix
-e...
1,http://start.
spring
.io/ 上down 一个初始化项目下来. 选择web,
eureka
disc...
赞
踩
article
spring
-
cloud
-
starter
-
netflix
-eureka-client...
Spring Cloud 3.0以上版本的Eureka客户端不再内置Ribbon,改用LoadBalancer以减少依赖...
赞
踩
article
关于
Spring
Cloud
Netflix
...
该项目通过自动配置为
Spring
Boot应用程序提供
Netflix
OSS集成,并绑定到
Spring
环境和其他Spri...
赞
踩
相关标签
springcloud
nacos
nacos配置中心
nacos服务发现
AlibabaNacos
Nacos配置管理-集群部署
Nacos配置管理-问题汇总
分布式
eureka
java
注册中心
Eureka
spring cloud
微服务
云原生
spring