繁体   English   中英

为什么 heroku 中的 spring 引导打开 jdk 15 部署失败

[英]Why deployment fails for spring boot open jdk 15 in heroku

Heroku 支持开放 JDK 15 https://devcenter.heroku.com/changelog-items/1887

我的资源中有一个包含java.runtime.version=15的 system.properties。 这是我的 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.4.3</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.ma</groupId>
    <artifactId>currencyconverter</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>currencyconverter</name>
    <description>Demo project for Spring Boot</description>
    
    <properties>
        <java.version>15</java.version>
    </properties>
    
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <!-- For Json Parser -->
        <dependency>
            <groupId>com.google.code.gson</groupId>
            <artifactId>gson</artifactId>
            <version>2.8.6</version>
        </dependency>

        <!-- For swagger-annotations -->
        <dependency>
            <groupId>io.swagger</groupId>
            <artifactId>swagger-annotations</artifactId>
            <version>1.5.17</version>
        </dependency>

        <!-- springfox-swagger2 -->
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger2</artifactId>
            <version>3.0.0</version>
        </dependency>

        <!-- springfox-core -->
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-core</artifactId>
            <version>3.0.0</version>
        </dependency>

        <!-- springfox-swagger-ui -->
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger-ui</artifactId>
            <version>3.0.0</version>
        </dependency>

        <!-- Swagger dependency -->
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-boot-starter</artifactId>
            <version>3.0.0</version>
        </dependency>


        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>

在 Heroku 开始部署时,前几行日志:-

-----> 在 Heroku-20 堆栈上构建
-----> 检测到 Java 应用程序
-----> 安装 JDK 1.8... 完成
-----> 执行 Maven
$./mvnw -DskipTests 清除依赖项:列表安装
[INFO] 正在扫描项目...
[INFO] 从中央下载:
https://repo.maven.apache.org/maven2/org/springframework/boot/spring-4.3-starter-starter-parent-2.4。

为什么要安装JDK 1.8?

日志的最后几行:-

  [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile) on project currencyconverter: Fatal error compiling: invalid target release: 15 -> [Help 1]
   [ERROR] 
   [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
   [ERROR] Re-run Maven using the -X switch to enable full debug logging.
   [ERROR] 
   [ERROR] For more information about the errors and possible solutions, please read the following articles:
   [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
   ERROR: Failed to build app with Maven
   We're sorry this build is failing! If you can't find the issue in application code,
   please submit a ticket so we can help: https://help.heroku.com/
   Push rejected, failed to compile Java app.
   Push failed

如何在 Heroku 中部署 JDK 15 应用程序?

我的资源中有一个包含java.runtime.version=15system.properties

你把它放在/src/main/resources中。

您应该将它放在 git 存储库的根文件夹/中。


在我的情况下,我的system.properties的内容是java.runtime.version=10.0.2并放置在我的 git 存储库的根目录中。

Java app detected它应该安装指定的 Java 版本之后立即在 build.log 中:

在此处输入图像描述

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM