如何修复Spring Tool Suite 4中的8080端口错误?

huangapple go评论67阅读模式
英文:

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

huangapple
  • 本文由 发表于 2020年8月22日 06:09:03
  • 转载请务必保留本文链接:https://go.coder-hub.com/63530623.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定