如何在Springboot中更改crashHub端口

时间:2015-05-05 10:30:28

标签: spring crash spring-boot

我在我的项目中使用Springboot,我在我的App中启动了一个嵌入式Springboot应用程序。我的应用程序已经有一个crashBub,它与springBoot的crashHub冲突,所以我如何更改springBoot的crashHub端口,我不想通过XML文件来实现。

2 个答案:

答案 0 :(得分:2)

Spring Boot的文档中有一个extensive list of configuration properties,包括用于配置远程shell使用的端口的文档:shell.ssh.portshell.telnet.port

您应该在application.properties的{​​{1}}文件中配置其中一个或两个属性。

答案 1 :(得分:0)

此外,您可以通过为java:

指定参数来实现
-Dshell.ssh.port=<your-port>

或者您的应用程序的命令行参数:

--shell.ssh.port=<your-port>