Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The import de.codecentric.boot.admin.server.config.EnableAdminServer cannot be resolved

I am developing the Microservices code by taking reference from https://github.com/spring-petclinic/spring-petclinic-microservices. I was able to successfully run all the modules, but I'm getting the below error.

The import de.codecentric.boot.admin.server.config.EnableAdminServer cannot be resolved

From the spring-petclinic-admin-server module, I am getting the below error.

import de.codecentric.boot.admin.server.config.EnableAdminServer;

@Configuration
@EnableAutoConfiguration
@EnableAdminServer
@EnableDiscoveryClient
public class SpringBootAdminApplication {
    public static void main(String[] args) {
        SpringApplication.run(SpringBootAdminApplication.class, args);
    }
}

enter image description here

I was able to start the other microservices modules.

enter image description here

pom.xml

<parent>
        <groupId>org.springframework.samples</groupId>
        <artifactId>spring-petclinic-microservices</artifactId>
        <version>2.0.4</version>
    </parent>

    <properties>
        <spring-boot-admin.version>2.0.1</spring-boot-admin.version>
        <docker.image.exposed.port>9090</docker.image.exposed.port>
        <docker.image.dockerfile.dir>${basedir}/../docker</docker.image.dockerfile.dir>
    </properties>

    <dependencies>
        <!-- Spring Boot -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-config</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
        </dependency>

        <!-- Spring Boot Admin -->
        <dependency>
            <groupId>de.codecentric</groupId>
            <artifactId>spring-boot-admin-starter-server</artifactId>
            <version>${spring-boot-admin.version}</version>
        </dependency>
        <dependency>
            <groupId>de.codecentric</groupId>
            <artifactId>spring-boot-admin-server-ui</artifactId>
            <version>${spring-boot-admin.version}</version>
        </dependency>

        <!-- Third-party librairies -->
        <dependency>
            <groupId>org.jolokia</groupId>
            <artifactId>jolokia-core</artifactId>
        </dependency>

    </dependencies>
like image 286
Jeff Cook Avatar asked Sep 22 '18 20:09

Jeff Cook


1 Answers

As per the link : https://codecentric.github.io/spring-boot-admin/current/. I have added below dependencies, then it works well.

<dependency>
    <groupId>de.codecentric</groupId>
    <artifactId>spring-boot-admin-starter-server</artifactId>
    <version>2.1.0-SNAPSHOT</version>
</dependency>
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
</dependency>
like image 139
Jeff Cook Avatar answered Oct 13 '22 17:10

Jeff Cook