我正在瀏覽Java的Heroku入門,但我在本地運行示例應用程序時遇到問題。運行本地Java Heroku
https://devcenter.heroku.com/articles/getting-started-with-java#run-the-app-locally https://devcenter.heroku.com/articles/getting-started-with-java#define-a-procfile
我運行它之後,我得到了「關於5000端口開始web.1」,但是當我打開本地主機:5000,它只是給我「這個網頁無法使用。」
下面是從CLI
輸出$ heroku local web -f Procfile.windows
forego | starting web.1 on port 5000
web.1 | Usage: java [-options] class [args...]
web.1 | in the version search
web.1 | show splash screen with specified image
web.1 |
讓我知道如果你需要更多的信息。
更新:所以我實際上運行該命令對我自己,當我意識到,這是所有Procfile呢,最後一行我得到的是
sh.exe": target\dependency\*: No such file or directory
當這顯然是由目標\依賴從mvn乾淨安裝? 我輸錯了什麼?
$ java -cp target\classes;"target\dependency\*" Main
此外,非常感謝@ mc805標記此並提供一個答案很快之後。這非常有幫助,如果我有名譽,我會贊成。 – noofberger