当前位置:   article > 正文

【Spring Boot】项目端口号冲突解决方法,一步到位_springboot端口冲突

springboot端口冲突

启动项目遇到以下问题:
Description:

Web server failed to start. Port 8080 was already in use.

Action:

Identify and stop the process that’s listening on port 8080 or configure this application to listen on another port.

Process finished with exit code 1

在这里插入图片描述

找到要启动的项目的配置文件application.properties ,没有的话可以在 resources 下手动创建。如图添加端口号设置代码,改一个不重复的端口号,启动项目即可成功。此处要注意的是,Spring Boot 可以用不同类型的配置文件,其语法也不相同,详情请参考【Spring Boot】Spring Boot 配置文件详解(application.yml、application-dev.yml、application-test.yml )

# 应用服务 WEB 访问端口
server.port=8081
  • 1
  • 2

在这里插入图片描述

最后运行成功!
在这里插入图片描述

持续更新ing,动动小手,点点关注,后续更精彩!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/707205
推荐阅读
相关标签
  

闽ICP备14008679号