修改 Spring boot 启动端口号 Spring Boot 监听端口被占用无法启动

Posted Aliwall

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了修改 Spring boot 启动端口号 Spring Boot 监听端口被占用无法启动相关的知识,希望对你有一定的参考价值。

使用 java -jar gs-spring-boot-0.1.0.jar 命令启动 spring-boot, 由于默认端口号为8080, 且此端口被tomcat占用, 所以启动时出现以下错误:

Error starting ApplicationContext. To display the conditions report re-run your application with \'debug\' enabled.

***************************
APPLICATION FAILED TO START
***************************

Description:

The Tomcat connector configured to listen on port 8080 failed to start. The port may already be in use or the connector may be misconfigured.

Action:

Verify the connector\'s configuration, identify and stop any process that\'s listening on port 8080, or configure this application to listen on another port.

 

由于没有源码, 不太懂Java开发, 所以从代码内修改端口无法实现.

 

通过搜索 查询到 可以使用启动命令 修改启动端口号, 此方法适用.

使用以下命令在终端启动spring boot:


java -jar -Dspring.config.location=application.properties -Dserver.port=8896 dataMq.jar

 

注:即使application.properties文件中设置了server.port=8080,启动端口也是: 8896


————————————————
参考网址: https://blog.csdn.net/m0_37739193/article/details/83388271 感谢无私分享.

以上是关于修改 Spring boot 启动端口号 Spring Boot 监听端口被占用无法启动的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot 修改默认端口号

Spring Boot 修改默认端口号

Spring Boot 修改默认端口号

Spring Boot# Spring Boot项目启动时,打印端口号项目名访问地址

Spring Boot# Spring Boot项目启动时,打印端口号项目名访问地址

spring boot修改yml 端口号不生效解决方案