Springboot 2 RESTful 应用程序使用 Procfile 部署到 heroku
Springboot 2 RESTful application deployed to heroku using Procfile
我尝试了多种配置来使用 procfile 将我的 Restful Springboot 2 应用程序部署到 heroku,但无济于事。我在这里尝试了几个 suggestions/solutions。
过程文件:
web: java $JAVA_OPTS -Dspring.profiles.active=stage -cp target/classes:target/libs/* com.rabbittab.RestFulApp
Heroku 日志:
2020-04-24T14:57:59.344561+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/"
。
非常感谢对此的任何帮助。
将 -Dserver.port=$PORT
添加到 Procfile。
我认为问题是您的应用程序没有绑定到 Heroku 提供的端口。
我尝试了多种配置来使用 procfile 将我的 Restful Springboot 2 应用程序部署到 heroku,但无济于事。我在这里尝试了几个 suggestions/solutions。
过程文件:
web: java $JAVA_OPTS -Dspring.profiles.active=stage -cp target/classes:target/libs/* com.rabbittab.RestFulApp
Heroku 日志:
2020-04-24T14:57:59.344561+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/"
。
非常感谢对此的任何帮助。
将 -Dserver.port=$PORT
添加到 Procfile。
我认为问题是您的应用程序没有绑定到 Heroku 提供的端口。