Spring

스프링 부트 앱을 heroku로 푸시하려고 하면 "치명적인 오류 컴파일: 유효하지 않은 대상 릴리스: 11"이 반환되는 이유는 무엇입니까?

기록만이살길 2022. 11. 27. 23:46
반응형

스프링 부트 앱을 heroku로 푸시하려고 하면 "치명적인 오류 컴파일: 유효하지 않은 대상 릴리스: 11"이 반환되는 이유는 무엇입니까?

1. 질문(문제점):

내 Spring 부트 앱을 Heroku로 푸시하려고 하는데 아래에서 이 오류가 발생합니다.

[INFO] Changes detected - recompiling the module!
   [INFO] Compiling 41 source files to /tmp/build_4ad2779b666eb1cd25b32f96d104b00b/target/classes
   [INFO] ------------------------------------------------------------------------
   [INFO] BUILD FAILURE
   [INFO] ------------------------------------------------------------------------
   [INFO] Total time:  11.273 s
   [INFO] Finished at: 2020-03-23T14:23:48Z
   [INFO] ------------------------------------------------------------------------
   [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile) on project algamoney-api: Fatal error compiling: invalid target release: 11 -> [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

! 오류: Maven으로 앱을 빌드하지 못했습니다. 이 빌드가 실패해서 죄송합니다! 애플리케이션 코드에서 문제를 찾을 수 없는 경우 https://help.heroku.com/ 에서 도움을 받을 수 있도록 티켓을 제출하세요 ! 푸시 거부, Java 앱 컴파일 실패. ! 푸시 실패

JAVA_HOME, java -versionjava -version동일한 mvn -versionJava 버전: 11.0.3에 대한 모든 포인트를 확인했습니다.

내 POM.xml:

<?xml version="1.0" encoding="UTF-8"?>

https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 org.springframework.boot spring-boot-starter-parent 2.2.5.RELEASE com.hugo.algamoney-api algamoney- api 1.0.0-SNAPSHOT algamoney-api Workshop Spring Boot com mongodb

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-data-jpa</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-devtools</artifactId>
        <scope>runtime</scope>
        <optional>true</optional>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
        <exclusions>
            <exclusion>
                <groupId>org.junit.vintage</groupId>
                <artifactId>junit-vintage-engine</artifactId>
            </exclusion>
        </exclusions>
    </dependency>

    <dependency>
        <groupId>mysql</groupId>
        <artifactId>mysql-connector-java</artifactId>
        <scope>runtime</scope>
    </dependency>

    <dependency>
        <groupId>org.flywaydb</groupId>
        <artifactId>flyway-core</artifactId>
    </dependency>

    <!-- Dependencia do hibernate e Jackson para funcionar o datatype -->
    <dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>hibernate-java8</artifactId>
    </dependency>

    <dependency>
        <groupId>com.fasterxml.jackson.datatype</groupId>
        <artifactId>jackson-datatype-jsr310</artifactId>
    </dependency>

    <!-- Pega a causa da exceção -->
    <dependency>
        <groupId>org.apache.commons</groupId>
        <artifactId>commons-lang3</artifactId>
    </dependency>

    <dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>hibernate-jpamodelgen</artifactId>
        <scope>provided</scope>
    </dependency>

    <!-- Spring security -->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-security</artifactId>
    </dependency>

    <dependency>
        <groupId>org.springframework.security.oauth</groupId>
        <artifactId>spring-security-oauth2</artifactId>
        <version>2.3.5.RELEASE</version>
    </dependency>

    <dependency>
        <groupId>org.springframework.security</groupId>
        <artifactId>spring-security-jwt</artifactId>
        <version>1.0.10.RELEASE</version>
    </dependency>

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-configuration-processor</artifactId>
        <optional>true</optional>
    </dependency>

</dependencies>

<build>
    <plugins>
        <plugin>
            <groupId>com.heroku.sdk</groupId>
            <artifactId>heroku-maven-plugin</artifactId>
            <version>2.0.8</version>
        </plugin>

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

2. 해결방안:

문제 해결됨! 많은 시도와 오류가 작동한 후에 내가 취하는 단계를 아래에 게시할 것입니다.

  1. 전체 프로젝트를 Java 11로 변경합니다. 일부는 1.8 버전에 있는 프로젝트의 JRE를 재조정합니다.
  2. system.properties다음 구성 을 작성하십시오 : java.runtime.version=11.0.3;
  3. 커밋하고 heroku에 푸시를 다시 추가합니다.
반응형