在heroku上部署的Java应用程序

时间:2016-03-28 08:56:50

标签: java maven heroku

我认为我的Procfile存在问题。我不能在heroku上部署我的应用程序,总是在日志中得到这个:

  

2016-03-25T12:46:43.601893 + 00:00 heroku [web.1]:使用命令java $JAVA_OPTS -jar target/dependency/webapp-runner.jar --port 45751 target/*.war启动流程   2016-03-25T12:46:46.615217 + 00:00 app [web.1]:根据dyno大小设置JAVA_TOOL_OPTIONS默认值。自定义设置将覆盖它们。   2016-03-25T12:46:46.617375 + 00:00 app [web.1]:错误:无法访问jarfile target / dependency / webapp-runner.jar   2016-03-25T12:46:47.819108 + 00:00 heroku [web.1]:进程退出状态1   2016-03-25T12:46:47.877603 + 00:00 heroku [web.1]:状态从开始变为崩溃

这是我的Procfile: web:java $ JAVA_OPTS -jar target / dependency / webapp-runner.jar --port $ PORT target / * .war

这是gitHub

上的项目

1 个答案:

答案 0 :(得分:1)

我在你的pom中看不到webapp-runner.jar。

Heroku似乎也无法找到这种依赖。

<!--  https://devcenter.heroku.com/articles/java-webapp-runner  -->
<plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-dependency-plugin</artifactId>
        <version>2.3</version>
        <executions>
            <execution>
                <phase>package</phase>
                <goals>
                    <goal>copy</goal>
                </goals>
                <configuration>
                    <artifactItems>
                        <artifactItem>
                            <groupId>com.github.jsimone</groupId>
                            <artifactId>webapp-runner</artifactId>
                            <version>8.0.24.0</version>
                            <destFileName>webapp-runner.jar</destFileName>
                        </artifactItem>
                    </artifactItems>
                </configuration>
            </execution>
        </executions>
    </plugin>