gpt4 book ai didi

maven - 如何解决 Heroku 中的 H14 错误?

转载 作者:行者123 更新时间:2023-12-05 01:00:32 25 4
gpt4 key购买 nike

我正在尝试使用 heroku 中的 spring boot 应用程序使用 maven 插件部署 war 文件。

我在部署它时遇到的错误代码是:

2018-03-10T05:47:07.563714+00:00 heroku[router]: at=error code=H14 desc="No web processes running" method=GET path="/favicon.ico" host=patiyati.herokuapp.com request_id=ebb35d7d-1fff-484f-8f58-faccd506b002 fwd="171.76.43.17" dyno= connect= service= status=503 bytes= protocol=https

我的pom.xml如下图:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<artifactId>Patiyati</artifactId>
<packaging>war</packaging>
<name>Patiyati</name>
<description>Patiyati</description>
<version>1.0</version>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.4.2.RELEASE</version>
</parent>

<properties>
<java.version>1.8</java.version>
</properties>

<dependencies>

<!-- Web -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

<!-- Web with Tomcat + Embed -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>

<!-- JSTL -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-mongodb</artifactId>
</dependency>

<!-- Need this to compile JSP -->
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
<scope>provided</scope>
</dependency>

<!-- Need this to compile JSP -->
<dependency>
<groupId>org.eclipse.jdt.core.compiler</groupId>
<artifactId>ecj</artifactId>
<version>4.6.1</version>
<scope>provided</scope>
</dependency>

<!-- Optional, for bootstrap -->
<dependency>
<groupId>org.webjars</groupId>
<artifactId>bootstrap</artifactId>
<version>3.3.7</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.json/json -->
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20180130</version>
</dependency>

</dependencies>
<build>
<plugins>
<!-- Package as an executable jar/war -->
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>com.heroku.sdk</groupId>
<artifactId>heroku-maven-plugin</artifactId>
<version>2.0.3</version>
<configuration>
<appName>patiyati</appName>
<warFile>target/Patiyati-1.0.war</warFile>
</configuration>
</plugin>
</plugins>
</build>
</project>

我已经经历了许多类似的问题,并尝试实现这些问题,但没有一个有用...关于使用 Heroku ps:scale web=1 -a patiyati我收到“找不到进程类型错误”

我按照文档 heroku deployment using maven plugin 中给出的步骤进行操作,但它为我提供了相同的结果。

关于添加 procfile :

web: java $JAVA_OPTS -cp target/classes:target/dependency/* com.spring.app.SpringBootWebApplication

SpringBootWebApplication 是我的主类,在 com.spring.app 包下。

现在我的应用程序崩溃了

2018-03-10T08:31:39.460117+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=patiyati.herokuapp.com request_id=59d88594-c17f-4003-8527-722d780f475c fwd="171.76.43.17" dyno= connect= service= status=503 bytes= protocol=https

如果有人能帮我解决这个问题,那就太好了。提前致谢。

最佳答案

在您的应用程序根目录中添加一个 Procfile 并使用以下条目推送应用程序。

web: java -jar $JAVA_OPTS -Dserver.port=$PORT target/your-app-name-version.jar

编辑

刚刚从您的 pom.xml 中意识到您正在打包为 war。请引用 here关于 war 部署到 heroku。

关于maven - 如何解决 Heroku 中的 H14 错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49206384/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com