问题Spring Boot Admin Server无法显示应用程序

时间:2018-09-05 14:36:51

标签: spring-boot-admin

我正在尝试使用Spring Boot Admin Server,但在仪表板上我的应用程序未在其中列出。

我该怎么做,在pom.xml中添加了以下依赖项:

<!-- https://mvnrepository.com/artifact/de.codecentric/spring-boot-admin-server -->
<dependency>
    <groupId>de.codecentric</groupId>
    <artifactId>spring-boot-admin-server</artifactId>
    <version>2.0.2</version>
</dependency>

<!-- https://mvnrepository.com/artifact/de.codecentric/spring-boot-admin-server-ui -->
<dependency>
    <groupId>de.codecentric</groupId>
    <artifactId>spring-boot-admin-server-ui</artifactId>
    <version>2.0.2</version>
</dependency>

<!-- https://mvnrepository.com/artifact/de.codecentric/spring-boot-admin-starter-client -->
<dependency>
    <groupId>de.codecentric</groupId>
    <artifactId>spring-boot-admin-starter-client</artifactId>
    <version>2.0.2</version>
</dependency>

在我的ServidorApplication类中:

@Configuration
@EnableAdminServer
@SpringBootApplication
@EnableAutoConfiguration(exclude = { JacksonAutoConfiguration.class })
public class ServidorApplication {

    public static void main(String[] args) {
        SpringApplication.run(ServidorApplication.class, args);System.err.println("Sem parametros de inicializacao");
    }

    GsonHttpMessageConverter gsonHttpMessageConverter() {
        return new GsonHttpMessageConverter(new Gson());
    }
}

在我的application.properties中:

spring.boot.admin.url=http://localhost:8084
management.security.enabled=false

但是当我打开Spring Boot Admin仪表板时,我没有任何应用程序。

Print of my dashboard

有人可以帮我吗?

1 个答案:

答案 0 :(得分:0)

使用 admin.client.url 代替 admin.url

spring.boot.admin.client.url=http://localhost:8084