Hallo ich habe ein kleines Gradle Projekt in dem ich ein Eureka Server in einem . Hier ist mein Setup :
Hier die Main Class :
Wenn ich nun die Main Class starten erhalte ich folgenden Fehler :
APPLICATION FAILED TO START
***************************
Description:
An attempt was made to call a method that does not exist. The attempt was made from the following location:
org.springframework.cloud.bootstrap.BootstrapApplicationListener.bootstrapServiceContext(BootstrapApplicationListener.java:161)
The following method did not exist:
'void org.springframework.boot.builder.SpringApplicationBuilder.<init>(java.lang.Object[])'
Kann mir jemand heflen.
Vielen Dank
Java:
dependencies {
implementation 'org.springframework.cloud:spring-cloud-starter-eureka-server:+'
}
Hier die Main Class :
Code:
@SpringBootApplication
@EnableEurekaServer
public class EurekaServer {
public static void main(String[] args) {
SpringApplication.run(EurekaServer.class, args);
}
}
Wenn ich nun die Main Class starten erhalte ich folgenden Fehler :
APPLICATION FAILED TO START
***************************
Description:
An attempt was made to call a method that does not exist. The attempt was made from the following location:
org.springframework.cloud.bootstrap.BootstrapApplicationListener.bootstrapServiceContext(BootstrapApplicationListener.java:161)
The following method did not exist:
'void org.springframework.boot.builder.SpringApplicationBuilder.<init>(java.lang.Object[])'
Kann mir jemand heflen.
Vielen Dank