无法加载我的 Procfile 指向的 main class

Unable to load main class that my Procfile is pointing

以下是我的 Procfile

web: java %JAVA_OPTS% -cp target\classes;"target\dependency\*"

但是当我在 heroku 中 运行 我的网络应用程序时,我收到以下错误。

Error: Could not find or load main class console

Main.class在包裹里info.socket.webmobile

当我键入 heroku open 时应用程序崩溃,当我 运行 时它抛出错误 Error: Could not find or load main class console 它像 heroku run java console

我怎样才能解决这个问题?

您的 Procfile 应包含以下内容:

web: java $JAVA_OPTS -cp target/classes;target/dependency/* info.socket.webmobile.Main

请注意,我添加了 info.socket.webmobile.Main class,并将格式转换为对 *nix 更友好的格式。