英文:
How to fix the Port 8080 error in Spring Tool Suit 4?
问题
请问,如何更改端口8080?
启动应用程序上下文时出错。要显示条件报告,请使用启用了“debug”的应用程序重新运行应用程序。
2020-08-21 19:03:11.350 ERROR 1632 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter :
应用程序启动失败
描述:
Web服务器启动失败。端口8080已经在使用中。
操作:
识别并停止正在侦听端口8080的进程,或将此应用程序配置为侦听另一个端口。
英文:
Please, how to change port 8080?
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2020-08-21 19:03:11.350 ERROR 1632 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter :
APPLICATION FAILED TO START
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.
答案1
得分: 1
你可以查找正在使用该端口的进程并终止它,或者可以配置你的应用使用另一个端口。要配置你的应用程序使用的端口,在你的 application.properties 文件中添加以下内容:
server.port=port_number_here
例如,要让你的应用程序使用端口 8081:
server.port=8081
英文:
You can either find out what process is using the port and kill it, or you can configure your app to use a different port. To configure the port that your app uses, put this in your application.properties:
server.port=port_number_here
So for example, to make your app use port 8081:
server.port=8081
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论