无法加载我的Procfile指向的主类

时间:2016-07-20 12:59:51

标签: java heroku procfile

以下是我的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

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

1 个答案:

答案 0 :(得分:1)

您的Procfile应包含此内容:

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

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