Spring boot-Exception в потоке "main" java.lang.NoSuchMethodError: org.springframew .. (выпуск версии) - PullRequest
0 голосов
/ 30 января 2019

Я получаю исключение при работе сервера. Я знаю, что это проблема версии Spring boot и spring-cloud.Но я использую spring boot 1.4.2.RELEASE и в настоящее время spring cloud использую Finchley.SR1.

Какая версия Spring Cloud с пружинной загрузкой 1.4.2.RELEASE подходит?

Получение исключения ниже:

Exception in thread "main" java.lang.NoSuchMethodError: org.springframework.boot.builder.SpringApplicationBuilder.<init>([Ljava/lang/Class;)V
    at org.springframework.cloud.bootstrap.BootstrapApplicationListener.bootstrapServiceContext(BootstrapApplicationListener.java:170)
    at org.springframework.cloud.bootstrap.BootstrapApplicationListener.onApplicationEvent(BootstrapApplicationListener.java:104)
    at org.springframework.cloud.bootstrap.BootstrapApplicationListener.onApplicationEvent(BootstrapApplicationListener.java:70)
    at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:166)
    at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:138)
    at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:121)
    at org.springframework.boot.context.event.EventPublishingRunListener.environmentPrepared(EventPublishingRunListener.java:68)
    at org.springframework.boot.SpringApplicationRunListeners.environmentPrepared(SpringApplicationRunListeners.java:54)
    at org.springframework.boot.SpringApplication.prepareEnvironment(SpringApplication.java:337)
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:308)
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:1186)
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:1175)
    at com.sarathi5.Sarathi5TestCase2Application.main(Sarathi5TestCase2Application.java:14)

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>TestCase2</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>war</packaging>
    <name>TestCase2</name>
    <description>Demo project for Spring Boot</description>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.4.2.RELEASE</version>
        <!-- <version>2.0.1.RELEASE</version> -->
        <relativePath/><!--  lookup parent from repository -->
    </parent>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <java.version>1.8</java.version>
        <drools.version>6.2.0.Final</drools.version><!--7.6.0.Final  -->
        <!--<spring-cloud.version></spring-cloud.version> -->
    </properties>

<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
 <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
 </dependency>
<dependencies>
<dependencyManagement>
      <dependencies>
        <dependency>
          <groupId>org.springframework.cloud</groupId>
          <artifactId>spring-cloud-dependencies</artifactId>
          <version>Finchley.SR1</version>
           <type>pom</type>
          <scope>import</scope>
        </dependency>
      </dependencies>
    </dependencyManagement>
</project>

Пожалуйста, помогите мне, что является проблемой?

Ответы [ 2 ]

0 голосов
/ 31 января 2019

Проблема решена.Я обновляю spring boot версию зависимости 1.4.2.RELEASE до 1.5.19.RELEASE.и его поддержка spring-cloud dependency management Edgware.SR5.

предоставлена ​​четкая информация о версии Ссылки:

Замечания к выпуску Spring Cloud Edgware: https://github.com/spring-projects/spring-cloud/wiki/Spring-Cloud-Edgware-Release-Notes

Замечания к выпуску Spring Cloud Camden: https://github.com/spring-projects/spring-cloud/wiki/Spring-Cloud-Camden-Release-Notes

Замечания к выпуску Spring Cloud Finchley: https://github.com/spring-projects/spring-cloud/wiki/spring-cloud-finchley-release-notes

версия обновлена, весенняя загрузка: 1.5.19-RELEASE и весеннее облако: Edgware.SR5

<parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
<!--        <version>1.4.2.RELEASE</version> -->
        <version>1.5.19.RELEASE</version>
        <!-- <version>2.0.1.RELEASE</version> -->
        <relativePath/><!--  lookup parent from repository -->
    </parent>

Обновление зависимости:

<dependencyManagement>
      <dependencies>
        <dependency>
          <groupId>org.springframework.cloud</groupId>
          <artifactId>spring-cloud-dependencies</artifactId>
          <version>Edgware.SR5</version>
           <type>pom</type>
          <scope>import</scope>
        </dependency>
      </dependencies>
    </dependencyManagement>

После обновления этих двухзависимости просто обновите проект maven (щелкните правой кнопкой мыши проект-> maven-> update) и установите mvn clean.

Проблема решена.

0 голосов
/ 30 января 2019

Edgware.SR5 - последняя версия, которая должна быть совместимой.

...