Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

STS Boot dashboard doesn't show the starting port port

I've just started to use Boot Dashboard to manage all my Spring Boot application (Boot Dashboard).

The problem is that I can't see the starting port of my applications:

My Boot Dashboard

The applications start without any problem:

Started Application in 4.337 seconds (JVM running for 4.953)

I'm using STS 3.7.1, Spring Boot 1.2.6.RELEASE and java 1.8.

Why Boot Dashboard doesn't show me the starting port of my applications?

like image 458
jfcorugedo Avatar asked Oct 14 '15 15:10

jfcorugedo


People also ask

How do I add a boot dashboard to STS?

Double-click on the project in the boot dashboard and it will open a new browser tab for you - directly navigating to the apps default URL. By default, this opens an Eclipse/STS internal browser view. If you prefer to use an external browser, you can set this in the preferences.


2 Answers

This particular feature is supported with Spring Boot 1.3.0 .

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

Note: some features of the dashboard like port discovery need a very recent version of boot (1.3)

like image 158
Ákos Ratku Avatar answered Oct 11 '22 14:10

Ákos Ratku


I added the following dependency in my POM and it worked:

<dependency>
 <groupId>org.springframework.boot</groupId>
 <artifactId>spring-boot-starter-web</artifactId>
</dependency>
like image 45
Luciano Ortiz Avatar answered Oct 11 '22 13:10

Luciano Ortiz