以前,在运行应用程序时,运行仪表板IntelliJ会在应用程序的运行配置名称旁边显示端口号。
请参见以下屏幕截图。我期望TracingAppA说TracingAppA:8001
,但它只是说TracingAppA。
我可以通过搜索日志找到端口号,但希望将其显示在应用程序名称旁边。这里发生了什么,默认值已更改?如果可以,我该如何将它们改回来?
答案 0 :(得分:1)
这是一个已知的错误,请参见https://youtrack.jetbrains.com/issue/IDEA-210665 您将不得不等待取回端口号。
答案 1 :(得分:0)
这是自IntelliJ v2019起的错误。以下步骤将再次显示端口(对于Spring Boot应用程序)
-Dcom.sun.management.jmxremote.authenticate = false -Dcom.sun.management.jmxremote.ssl = false -Dcom.sun.management.jmxremote.port = app_port_here
不必更改app_port_here
,并且该端口在每个spring boot应用程序中都是唯一的。