当前位置:   article > 正文

SpringBoot启动端口经常被占用解决方法_spingboot 重启application后显示端口占用

spingboot 重启application后显示端口占用

问题:

启动SpringBoot项目后发现启动失败,控制台输出以下内容

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.’

打开命令窗口,输入netstat -ano| 8080,查看占用端口的进程的pid

Windows 下杀指定进程taskkill -F /pid xxxx

如果不想出现如上问题或者换了端口亦然被占用,下面的办法可以解决问题。

1、使用端口号:0 (随机端口)

2、添加依赖:

		<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
  • 1
  • 2
  • 3
  • 4
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/707148
推荐阅读
相关标签
  

闽ICP备14008679号