如何使用Intellij为我的gradle项目设置本地主机端口?
我正在尝试使用intelliJ IDE中的bootstrap运行Gradle项目。 运行它后,我得到了一个错误的错误:
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.
我已经研究了在那个端口上听什么,如何杀死它似乎比它的价值更麻烦。这就是我的尝试。:
我正在寻找如何更改项目使用的端口。我正在使用IntelliJ 2017.1和Gradle 3.4.1。我见过的大多数解决方案都使用BuildConfig.groovy文件,但我不相信我的项目有任何这样的文件。
任何解决托管问题的方法都很棒但是现在我正在考虑更改默认端口是最好的方法。
答案 0 :(得分:0)
根据您的评论,您正在运行Spring Boot应用程序,并且您想要更改服务器端口。您正在运行服务器,即使您想在本地运行应用程序进行测试。 Spring Boot附带嵌入式Tomcat或Jetty。
您可以通过更改应用程序属性server.port
来更改端口。您可以在命令行上传递它:
--server.port=8090
或将其设置为application.properties
:
server.port=8090
或application.yml
server:
port: 8090
See the documentation了解更多信息。