gpt4 book ai didi

spring-boot - Heroku - Spring Boot App - 进程以状态 1 退出

转载 作者:行者123 更新时间:2023-12-05 06:29:55 25 4
gpt4 key购买 nike

尝试运行“hello world”Spring Boot 应用程序(在本地运行正常)我收到此消息:

2018-10-20T06:32:21.827918+00:00 heroku[web.1]: State changed from crashed to starting
2018-10-20T06:32:24.676953+00:00 heroku[web.1]: Starting process with command `java -Dserver.port=35016 $JAVA_OPTS -jar target/das-boot-0.0.1-SNAPSHOT.jar`
2018-10-20T06:32:27.138742+00:00 app[web.1]: Setting JAVA_TOOL_OPTIONS defaults based on dyno size. Custom settings will override them.
2018-10-20T06:32:27.142496+00:00 app[web.1]: Picked up JAVA_TOOL_OPTIONS: -Xmx300m -Xss512k -XX:CICompilerCount=2 -Dfile.encoding=UTF-8
2018-10-20T06:32:27.266974+00:00 app[web.1]: no main manifest attribute, in target/das-boot-0.0.1-SNAPSHOT.jar
2018-10-20T06:32:27.324779+00:00 heroku[web.1]: Process exited with status 1
2018-10-20T06:32:27.343816+00:00 heroku[web.1]: State changed from starting to crashed

您可以在 github 上找到代码以获取更多详细信息 (https://github.com/ricgonmen/das-boot)。

我尝试在使用和不使用 Procfile 的情况下运行它,但没有任何变化。我不知道如何获取有关崩溃的更多信息来解决它。有什么建议吗?

谢谢!

最佳答案

这似乎是您的问题:在 target/das-boot-0.0.1-SNAPSHOT.jar 中没有主要 list 属性

您可以尝试将其添加到您的 pom.xml 的插件部分吗?

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.0.6.RELEASE</version>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

可在此处找到更多信息:Spring Boot Maven Plugin

关于spring-boot - Heroku - Spring Boot App - 进程以状态 1 退出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52903139/

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