STS引导仪表板不显示起始端口端口

时间:2015-10-14 15:42:13

标签: java eclipse spring spring-boot spring-tool-suite

我刚刚开始使用Boot Dashboard管理我的所有Spring Boot应用程序(Boot Dashboard)。

问题是我看不到我的应用程序的起始端口:

My Boot Dashboard

应用程序启动没有任何问题:

Started Application in 4.337 seconds (JVM running for 4.953)

我正在使用STS 3.7.1,Spring Boot 1.2.6.RELEASE和java 1.8。

为什么Boot Dashboard没有显示我的应用程序的起始端口?

3 个答案:

答案 0 :(得分:2)

Spring Boot 1.3.0支持此特定功能。

http://docs.spring.io/sts/nan/latest/NewAndNoteworthy.html

  

注意:仪表板的某些功能(如端口发现)需要非常多   最近版本的boot(1.3)

答案 1 :(得分:0)

我在POM中添加了以下依赖项,并且它起作用了:

<dependency>
 <groupId>org.springframework.boot</groupId>
 <artifactId>spring-boot-starter-web</artifactId>
</dependency>

答案 2 :(得分:0)

通过评论 WebApplicationType.NONE 为我解决了

    @SpringBootApplication(scanBasePackages = "com.demo")
    public class Application {
        private static final Logger LOGGER = LoggerFactory.getLogger(Application.class);
        
        public static void main(final String... args) {
            final SpringApplication app = new SpringApplication(Application.class);
            //app.setWebApplicationType(WebApplicationType.NONE);
            app.run(args);
        }
}