spring-attic / spring-native

Spring Native is now superseded by Spring Boot 3 official native support
https://docs.spring.io/spring-boot/docs/current/reference/html/native-image.html
Apache License 2.0
2.74k stars 355 forks source link

Failed to execute goal org.springframework.experimental:spring-aot-maven-plugin:0.10.1:test-generate (test-generate) on project #898

Closed winer632 closed 3 years ago

winer632 commented 3 years ago

_

org.springframework.experimental
        <artifactId>spring-native</artifactId>
        <version>0.10.1</version>

_

_

1.8 2020.0.3 2.5.2 3.1 2.9.2 0.9.0.RELEASE 1.9.4 _ **I started following the guide https://docs.spring.io/spring-native/docs/current/reference/htmlsingle/#getting-started-native-build-tools but when I build the project with "mvn -Pnative -DskipTests package" in the command line I got this error.** ![image](https://user-images.githubusercontent.com/4931801/125017462-c6889e80-e0a5-11eb-8bae-56a4e1134776.png)
winer632 commented 3 years ago

You can use this demo project for debug. https://drive.google.com/drive/folders/1FbjN-URNJtTiGKdQG3MXQKGbKiEuW_Ys?usp=sharing

ttddyy commented 3 years ago

Hi @winer632

I see there is a warning in the log - The requested profile "native" could not activated because it does not exist.

I suspect your pom.xml is probably not setup correctly. I recommend creating a sample project from https://start.spring.io and compare with your pom.xml.

ttddyy commented 3 years ago

@winer632 you need to upgrade maven-compiler-plugin to the newer version. e.g. 3.8.1 and also specify appropriate java compiler version (e.g. 8, 11).

winer632 commented 3 years ago

@winer632 you need to upgrade maven-compiler-plugin to the newer version. e.g. 3.8.1 and also specify appropriate java compiler version (e.g. 8, 11).

After an upgrade of maven-compiler-plugin to the newer version 3.8.1 and specified java compiler version to 1.8, I got the following error.

I also update the demo project so the link is still valid to explain this change. https://drive.google.com/drive/folders/1FbjN-URNJtTiGKdQG3MXQKGbKiEuW_Ys?usp=sharing

I can compile and run the sample project https://drive.google.com/drive/folders/1KiX4FkCxlE_jyek3yzcaPX3iS4u3aTCL?usp=sharing on my MAC successfully following the instruction of https://docs.spring.io/spring-native/docs/current/reference/htmlsingle/#getting-started-native-build-tools, however I can't tell what's the difference between my demo code's pom.xml and this sample project's pom.xml, and don't know which point caused this compilation error.

wangxinxin@CN0614006847M  ~/Desktop/code/IR/snapshot-56-service   pilot2-prod ±✚  mvn -Pnative -DskipTests package [INFO] Scanning for projects... [WARNING] [WARNING] Some problems were encountered while building the effective model for com.sns.fis:snapshot-56-service:jar:0.0.1-SNAPSHOT [WARNING] 'dependencies.dependency.(groupId:artifactId:type:classifier)' must be unique: org.springframework.boot:spring-boot-starter-test:jar -> duplicate declaration of version (?) @ line 124, column 15 [WARNING] 'build.plugins.plugin.(groupId:artifactId)' must be unique but found duplicate declaration of plugin org.springframework.boot:spring-boot-maven-plugin @ line 206, column 12 [WARNING] [WARNING] It is highly recommended to fix these problems because they threaten the stability of your build. [WARNING] [WARNING] For this reason, future Maven versions might no longer support building such malformed projects. [WARNING] [INFO] [INFO] ------------------< com.sns.fis:snapshot-56-service >------------------- [INFO] Building snapshot-56-service 0.0.1-SNAPSHOT [INFO] --------------------------------[ jar ]--------------------------------- [INFO] [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ snapshot-56-service --- [WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent! [INFO] Copying 4 resources [INFO] [INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ snapshot-56-service --- [INFO] Nothing to compile - all classes are up to date [INFO] [INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ snapshot-56-service --- [WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent! [INFO] skip non existing resourceDirectory /Users/wangxinxin/Desktop/code/IR/snapshot-56-service/src/test/resources [INFO] [INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ snapshot-56-service --- [INFO] Changes detected - recompiling the module! [WARNING] File encoding has not been set, using platform encoding UTF-8, i.e. build is platform dependent! [INFO] Compiling 1 source file to /Users/wangxinxin/Desktop/code/IR/snapshot-56-service/target/test-classes [INFO] [INFO] --- spring-aot-maven-plugin:0.10.1:test-generate (test-generate) @ snapshot-56-service --- [INFO] Spring Native operating mode: native [WARNING] Failed verification check: this type was requested to be added to configuration but is not resolvable: org.springframework.data.jpa.repository.support.EntityManagerBeanDefinitionRegistrarPostProcessor it will be skipped [WARNING] Failed verification check: this type was requested to be added to configuration but is not resolvable: org.springframework.security.config.annotation.web.configuration.AutowiredWebSecurityConfigurersIgnoreParents it will be skipped [WARNING] Failed verification check: this type was requested to be added to configuration but is not resolvable: ch.qos.logback.classic.pattern.DateConverter it will be skipped [WARNING] Failed verification check: this type was requested to be added to configuration but is not resolvable: ch.qos.logback.classic.pattern.LevelConverter it will be skipped [WARNING] Failed verification check: this type was requested to be added to configuration but is not resolvable: ch.qos.logback.classic.pattern.LoggerConverter it will be skipped [WARNING] Failed verification check: this type was requested to be added to configuration but is not resolvable: ch.qos.logback.classic.pattern.MessageConverter it will be skipped [WARNING] Failed verification check: this type was requested to be added to configuration but is not resolvable: ch.qos.logback.classic.pattern.LineSeparatorConverter it will be skipped [WARNING] Failed verification check: this type was requested to be added to configuration but is not resolvable: ch.qos.logback.classic.pattern.ThreadConverter it will be skipped [WARNING] Failed verification check: this type was requested to be added to configuration but is not resolvable: ch.qos.logback.classic.pattern.MDCConverter it will be skipped [WARNING] Failed verification check: this type was requested to be added to configuration but is not resolvable: ch.qos.logback.core.rolling.helper.IntegerTokenConverter it will be skipped [WARNING] Failed verification check: this type was requested to be added to configuration but is not resolvable: ch.qos.logback.core.rolling.helper.DateTokenConverter it will be skipped [WARNING] Failed verification check: this type was requested to be added to configuration but is not resolvable: javax.transaction.Transactional it will be skipped [WARNING] Failed verification check: this type was requested to be added to configuration but is not resolvable: kotlin.jvm.functions.Function0 it will be skipped [WARNING] Failed verification check: this type was requested to be added to configuration but is not resolvable: kotlin.jvm.functions.Function1 it will be skipped [WARNING] Failed verification check: this type was requested to be added to configuration but is not resolvable: kotlin.Unit it will be skipped [WARNING] Failed verification check: this type was requested to be added to configuration but is not resolvable: org.springframework.web.reactive.socket.server.upgrade.TomcatRequestUpgradeStrategy it will be skipped [INFO] Changes detected - recompiling the module! [WARNING] File encoding has not been set, using platform encoding UTF-8, i.e. build is platform dependent! [INFO] Compiling 41 source files to /Users/wangxinxin/Desktop/code/IR/snapshot-56-service/target/test-classes [INFO] /Users/wangxinxin/Desktop/code/IR/snapshot-56-service/target/generated-test-sources/spring-aot/src/test/java/org/springframework/aot/StaticSpringFactories.java: Some input files use or override a deprecated API. [INFO] /Users/wangxinxin/Desktop/code/IR/snapshot-56-service/target/generated-test-sources/spring-aot/src/test/java/org/springframework/aot/StaticSpringFactories.java: Recompile with -Xlint:deprecation for details. [INFO] /Users/wangxinxin/Desktop/code/IR/snapshot-56-service/target/generated-test-sources/spring-aot/src/test/java/org/springframework/aot/StaticSpringFactories.java: /Users/wangxinxin/Desktop/code/IR/snapshot-56-service/target/generated-test-sources/spring-aot/src/test/java/org/springframework/aot/StaticSpringFactories.java uses unchecked or unsafe operations. [INFO] /Users/wangxinxin/Desktop/code/IR/snapshot-56-service/target/generated-test-sources/spring-aot/src/test/java/org/springframework/aot/StaticSpringFactories.java: Recompile with -Xlint:unchecked for details. [WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent! [INFO] Using 'null' encoding to copy filtered properties files. [INFO] Copying 5 resources [INFO] [INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ snapshot-56-service --- [INFO] Tests are skipped. [INFO] [INFO] --- native-maven-plugin:0.9.0:test (test-native) @ snapshot-56-service --- [INFO] Tests are skipped. [INFO] [INFO] --- spring-aot-maven-plugin:0.10.1:generate (generate) @ snapshot-56-service --- [INFO] Spring Native operating mode: native [WARNING] Failed verification check: this type was requested to be added to configuration but is not resolvable: org.springframework.data.jpa.repository.support.EntityManagerBeanDefinitionRegistrarPostProcessor it will be skipped [WARNING] Failed verification check: this type was requested to be added to configuration but is not resolvable: org.springframework.security.config.annotation.web.configuration.AutowiredWebSecurityConfigurersIgnoreParents it will be skipped [WARNING] Failed verification check: this type was requested to be added to configuration but is not resolvable: ch.qos.logback.classic.pattern.DateConverter it will be skipped [WARNING] Failed verification check: this type was requested to be added to configuration but is not resolvable: ch.qos.logback.classic.pattern.LevelConverter it will be skipped [WARNING] Failed verification check: this type was requested to be added to configuration but is not resolvable: ch.qos.logback.classic.pattern.LoggerConverter it will be skipped [WARNING] Failed verification check: this type was requested to be added to configuration but is not resolvable: ch.qos.logback.classic.pattern.MessageConverter it will be skipped [WARNING] Failed verification check: this type was requested to be added to configuration but is not resolvable: ch.qos.logback.classic.pattern.LineSeparatorConverter it will be skipped [WARNING] Failed verification check: this type was requested to be added to configuration but is not resolvable: ch.qos.logback.classic.pattern.ThreadConverter it will be skipped [WARNING] Failed verification check: this type was requested to be added to configuration but is not resolvable: ch.qos.logback.classic.pattern.MDCConverter it will be skipped [WARNING] Failed verification check: this type was requested to be added to configuration but is not resolvable: ch.qos.logback.core.rolling.helper.IntegerTokenConverter it will be skipped [WARNING] Failed verification check: this type was requested to be added to configuration but is not resolvable: ch.qos.logback.core.rolling.helper.DateTokenConverter it will be skipped [WARNING] Failed verification check: this type was requested to be added to configuration but is not resolvable: javax.transaction.Transactional it will be skipped [WARNING] Failed verification check: this type was requested to be added to configuration but is not resolvable: kotlin.jvm.functions.Function0 it will be skipped [WARNING] Failed verification check: this type was requested to be added to configuration but is not resolvable: kotlin.jvm.functions.Function1 it will be skipped [WARNING] Failed verification check: this type was requested to be added to configuration but is not resolvable: kotlin.Unit it will be skipped [WARNING] Failed verification check: this type was requested to be added to configuration but is not resolvable: org.springframework.web.reactive.socket.server.upgrade.TomcatRequestUpgradeStrategy it will be skipped [INFO] Changes detected - recompiling the module! [WARNING] File encoding has not been set, using platform encoding UTF-8, i.e. build is platform dependent! [INFO] Compiling 26 source files to /Users/wangxinxin/Desktop/code/IR/snapshot-56-service/target/classes [INFO] /Users/wangxinxin/Desktop/code/IR/snapshot-56-service/target/generated-sources/spring-aot/src/main/java/org/springframework/boot/autoconfigure/flyway/_FactoryProvider.java: Some input files use or override a deprecated API. [INFO] /Users/wangxinxin/Desktop/code/IR/snapshot-56-service/target/generated-sources/spring-aot/src/main/java/org/springframework/boot/autoconfigure/flyway/_FactoryProvider.java: Recompile with -Xlint:deprecation for details. [INFO] /Users/wangxinxin/Desktop/code/IR/snapshot-56-service/target/generated-sources/spring-aot/src/main/java/org/springframework/aot/StaticSpringFactories.java: /Users/wangxinxin/Desktop/code/IR/snapshot-56-service/target/generated-sources/spring-aot/src/main/java/org/springframework/aot/StaticSpringFactories.java uses unchecked or unsafe operations. [INFO] /Users/wangxinxin/Desktop/code/IR/snapshot-56-service/target/generated-sources/spring-aot/src/main/java/org/springframework/aot/StaticSpringFactories.java: Recompile with -Xlint:unchecked for details. [WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent! [INFO] Using 'null' encoding to copy filtered properties files. [INFO] Copying 5 resources [INFO] [INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ snapshot-56-service --- [INFO] Building jar: /Users/wangxinxin/Desktop/code/IR/snapshot-56-service/target/snapshot-56-service-0.0.1-SNAPSHOT.jar [INFO] [INFO] --- spring-boot-maven-plugin:2.5.2:repackage (default) @ snapshot-56-service --- [INFO] Attaching repackaged archive /Users/wangxinxin/Desktop/code/IR/snapshot-56-service/target/snapshot-56-service-0.0.1-SNAPSHOT-exec.jar with classifier exec [INFO] [INFO] --- native-maven-plugin:0.9.0:build (build-native) @ snapshot-56-service --- [INFO] ImageClasspath Entry: org.springframework.boot:spring-boot-starter-web:jar:2.5.2:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-web/2.5.2/spring-boot-starter-web-2.5.2.jar) [INFO] ImageClasspath Entry: org.springframework.boot:spring-boot-starter:jar:2.5.2:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter/2.5.2/spring-boot-starter-2.5.2.jar) [INFO] ImageClasspath Entry: org.springframework.boot:spring-boot:jar:2.5.2:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot/2.5.2/spring-boot-2.5.2.jar) [INFO] ImageClasspath Entry: org.springframework.boot:spring-boot-autoconfigure:jar:2.5.2:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/2.5.2/spring-boot-autoconfigure-2.5.2.jar) [INFO] ImageClasspath Entry: jakarta.annotation:jakarta.annotation-api:jar:1.3.5:compile (file:///Users/wangxinxin/.m2/repository/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.jar) [INFO] ImageClasspath Entry: org.yaml:snakeyaml:jar:1.28:compile (file:///Users/wangxinxin/.m2/repository/org/yaml/snakeyaml/1.28/snakeyaml-1.28.jar) [INFO] ImageClasspath Entry: org.springframework.boot:spring-boot-starter-json:jar:2.5.2:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-json/2.5.2/spring-boot-starter-json-2.5.2.jar) [INFO] ImageClasspath Entry: com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.12.3:compile (file:///Users/wangxinxin/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.12.3/jackson-datatype-jdk8-2.12.3.jar) [INFO] ImageClasspath Entry: com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.12.3:compile (file:///Users/wangxinxin/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.12.3/jackson-datatype-jsr310-2.12.3.jar) [INFO] ImageClasspath Entry: com.fasterxml.jackson.module:jackson-module-parameter-names:jar:2.12.3:compile (file:///Users/wangxinxin/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.12.3/jackson-module-parameter-names-2.12.3.jar) [INFO] ImageClasspath Entry: org.springframework.boot:spring-boot-starter-tomcat:jar:2.5.2:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/2.5.2/spring-boot-starter-tomcat-2.5.2.jar) [INFO] ImageClasspath Entry: org.apache.tomcat.embed:tomcat-embed-core:jar:9.0.48:compile (file:///Users/wangxinxin/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/9.0.48/tomcat-embed-core-9.0.48.jar) [INFO] ImageClasspath Entry: org.apache.tomcat.embed:tomcat-embed-el:jar:9.0.48:compile (file:///Users/wangxinxin/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/9.0.48/tomcat-embed-el-9.0.48.jar) [INFO] ImageClasspath Entry: org.apache.tomcat.embed:tomcat-embed-websocket:jar:9.0.48:compile (file:///Users/wangxinxin/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.48/tomcat-embed-websocket-9.0.48.jar) [INFO] ImageClasspath Entry: org.springframework:spring-web:jar:5.3.8:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/spring-web/5.3.8/spring-web-5.3.8.jar) [INFO] ImageClasspath Entry: org.springframework:spring-beans:jar:5.3.8:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/spring-beans/5.3.8/spring-beans-5.3.8.jar) [INFO] ImageClasspath Entry: org.springframework:spring-webmvc:jar:5.3.8:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/spring-webmvc/5.3.8/spring-webmvc-5.3.8.jar) [INFO] ImageClasspath Entry: org.springframework:spring-context:jar:5.3.8:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/spring-context/5.3.8/spring-context-5.3.8.jar) [INFO] ImageClasspath Entry: org.springframework:spring-expression:jar:5.3.8:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/spring-expression/5.3.8/spring-expression-5.3.8.jar) [INFO] ImageClasspath Entry: org.springframework.boot:spring-boot-starter-log4j2:jar:2.5.2:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-log4j2/2.5.2/spring-boot-starter-log4j2-2.5.2.jar) [INFO] ImageClasspath Entry: org.apache.logging.log4j:log4j-slf4j-impl:jar:2.14.1:compile (file:///Users/wangxinxin/.m2/repository/org/apache/logging/log4j/log4j-slf4j-impl/2.14.1/log4j-slf4j-impl-2.14.1.jar) [INFO] ImageClasspath Entry: org.slf4j:slf4j-api:jar:1.7.31:compile (file:///Users/wangxinxin/.m2/repository/org/slf4j/slf4j-api/1.7.31/slf4j-api-1.7.31.jar) [INFO] ImageClasspath Entry: org.apache.logging.log4j:log4j-api:jar:2.14.1:compile (file:///Users/wangxinxin/.m2/repository/org/apache/logging/log4j/log4j-api/2.14.1/log4j-api-2.14.1.jar) [INFO] ImageClasspath Entry: org.apache.logging.log4j:log4j-core:jar:2.14.1:compile (file:///Users/wangxinxin/.m2/repository/org/apache/logging/log4j/log4j-core/2.14.1/log4j-core-2.14.1.jar) [INFO] ImageClasspath Entry: org.apache.logging.log4j:log4j-jul:jar:2.14.1:compile (file:///Users/wangxinxin/.m2/repository/org/apache/logging/log4j/log4j-jul/2.14.1/log4j-jul-2.14.1.jar) [INFO] ImageClasspath Entry: org.slf4j:jul-to-slf4j:jar:1.7.31:compile (file:///Users/wangxinxin/.m2/repository/org/slf4j/jul-to-slf4j/1.7.31/jul-to-slf4j-1.7.31.jar) [INFO] ImageClasspath Entry: org.springframework.cloud:spring-cloud-starter-consul-discovery:jar:3.0.3:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-consul-discovery/3.0.3/spring-cloud-starter-consul-discovery-3.0.3.jar) [INFO] ImageClasspath Entry: org.springframework.cloud:spring-cloud-starter-consul:jar:3.0.3:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-consul/3.0.3/spring-cloud-starter-consul-3.0.3.jar) [INFO] ImageClasspath Entry: org.springframework.cloud:spring-cloud-consul-core:jar:3.0.3:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-consul-core/3.0.3/spring-cloud-consul-core-3.0.3.jar) [INFO] ImageClasspath Entry: com.ecwid.consul:consul-api:jar:1.4.5:compile (file:///Users/wangxinxin/.m2/repository/com/ecwid/consul/consul-api/1.4.5/consul-api-1.4.5.jar) [INFO] ImageClasspath Entry: com.google.code.gson:gson:jar:2.8.7:compile (file:///Users/wangxinxin/.m2/repository/com/google/code/gson/gson/2.8.7/gson-2.8.7.jar) [INFO] ImageClasspath Entry: org.apache.httpcomponents:httpclient:jar:4.5.13:compile (file:///Users/wangxinxin/.m2/repository/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar) [INFO] ImageClasspath Entry: commons-codec:commons-codec:jar:1.15:compile (file:///Users/wangxinxin/.m2/repository/commons-codec/commons-codec/1.15/commons-codec-1.15.jar) [INFO] ImageClasspath Entry: org.apache.httpcomponents:httpcore:jar:4.4.14:compile (file:///Users/wangxinxin/.m2/repository/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar) [INFO] ImageClasspath Entry: org.springframework.cloud:spring-cloud-consul-discovery:jar:3.0.3:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-consul-discovery/3.0.3/spring-cloud-consul-discovery-3.0.3.jar) [INFO] ImageClasspath Entry: org.springframework.cloud:spring-cloud-starter-loadbalancer:jar:3.0.3:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-loadbalancer/3.0.3/spring-cloud-starter-loadbalancer-3.0.3.jar) [INFO] ImageClasspath Entry: org.springframework.cloud:spring-cloud-loadbalancer:jar:3.0.3:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-loadbalancer/3.0.3/spring-cloud-loadbalancer-3.0.3.jar) [INFO] ImageClasspath Entry: io.projectreactor.addons:reactor-extra:jar:3.4.3:compile (file:///Users/wangxinxin/.m2/repository/io/projectreactor/addons/reactor-extra/3.4.3/reactor-extra-3.4.3.jar) [INFO] ImageClasspath Entry: org.springframework.boot:spring-boot-starter-cache:jar:2.5.2:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-cache/2.5.2/spring-boot-starter-cache-2.5.2.jar) [INFO] ImageClasspath Entry: com.stoyanr:evictor:jar:1.0.0:compile (file:///Users/wangxinxin/.m2/repository/com/stoyanr/evictor/1.0.0/evictor-1.0.0.jar) [INFO] ImageClasspath Entry: org.springframework.boot:spring-boot-starter-actuator:jar:2.5.2:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-actuator/2.5.2/spring-boot-starter-actuator-2.5.2.jar) [INFO] ImageClasspath Entry: org.springframework.boot:spring-boot-actuator-autoconfigure:jar:2.5.2:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-actuator-autoconfigure/2.5.2/spring-boot-actuator-autoconfigure-2.5.2.jar) [INFO] ImageClasspath Entry: org.springframework.boot:spring-boot-actuator:jar:2.5.2:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-actuator/2.5.2/spring-boot-actuator-2.5.2.jar) [INFO] ImageClasspath Entry: io.micrometer:micrometer-core:jar:1.7.1:compile (file:///Users/wangxinxin/.m2/repository/io/micrometer/micrometer-core/1.7.1/micrometer-core-1.7.1.jar) [INFO] ImageClasspath Entry: org.hdrhistogram:HdrHistogram:jar:2.1.12:compile (file:///Users/wangxinxin/.m2/repository/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.jar) [INFO] ImageClasspath Entry: org.latencyutils:LatencyUtils:jar:2.0.3:runtime (file:///Users/wangxinxin/.m2/repository/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.jar) [INFO] ImageClasspath Entry: org.springframework.cloud:spring-cloud-starter-stream-rocketmq:jar:0.9.0.RELEASE:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-stream-rocketmq/0.9.0.RELEASE/spring-cloud-starter-stream-rocketmq-0.9.0.RELEASE.jar) [INFO] ImageClasspath Entry: org.springframework.cloud:spring-cloud-stream-binder-rocketmq:jar:0.9.0.RELEASE:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-stream-binder-rocketmq/0.9.0.RELEASE/spring-cloud-stream-binder-rocketmq-0.9.0.RELEASE.jar) [INFO] ImageClasspath Entry: org.springframework.cloud:spring-cloud-stream:jar:3.1.3:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-stream/3.1.3/spring-cloud-stream-3.1.3.jar) [INFO] ImageClasspath Entry: org.springframework.integration:spring-integration-jmx:jar:5.5.1:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/integration/spring-integration-jmx/5.5.1/spring-integration-jmx-5.5.1.jar) [INFO] ImageClasspath Entry: org.springframework.cloud:spring-cloud-function-context:jar:3.1.3:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-function-context/3.1.3/spring-cloud-function-context-3.1.3.jar) [INFO] ImageClasspath Entry: net.jodah:typetools:jar:0.6.2:compile (file:///Users/wangxinxin/.m2/repository/net/jodah/typetools/0.6.2/typetools-0.6.2.jar) [INFO] ImageClasspath Entry: org.springframework.cloud:spring-cloud-function-core:jar:3.1.3:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-function-core/3.1.3/spring-cloud-function-core-3.1.3.jar) [INFO] ImageClasspath Entry: org.springframework.cloud:spring-cloud-starter-bus-rocketmq:jar:0.9.0.RELEASE:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-bus-rocketmq/0.9.0.RELEASE/spring-cloud-starter-bus-rocketmq-0.9.0.RELEASE.jar) [INFO] ImageClasspath Entry: org.springframework.cloud:spring-cloud-bus:jar:3.0.3:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-bus/3.0.3/spring-cloud-bus-3.0.3.jar) [INFO] ImageClasspath Entry: org.springframework.integration:spring-integration-core:jar:5.5.1:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/integration/spring-integration-core/5.5.1/spring-integration-core-5.5.1.jar) [INFO] ImageClasspath Entry: org.springframework:spring-core:jar:5.3.8:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/spring-core/5.3.8/spring-core-5.3.8.jar) [INFO] ImageClasspath Entry: org.springframework:spring-jcl:jar:5.3.8:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/spring-jcl/5.3.8/spring-jcl-5.3.8.jar) [INFO] ImageClasspath Entry: org.springframework.cloud:spring-cloud-starter-config:jar:3.0.4:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-config/3.0.4/spring-cloud-starter-config-3.0.4.jar) [INFO] ImageClasspath Entry: org.springframework.cloud:spring-cloud-starter:jar:3.0.3:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter/3.0.3/spring-cloud-starter-3.0.3.jar) [INFO] ImageClasspath Entry: org.springframework.cloud:spring-cloud-context:jar:3.0.3:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-context/3.0.3/spring-cloud-context-3.0.3.jar) [INFO] ImageClasspath Entry: org.springframework.security:spring-security-crypto:jar:5.5.1:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/security/spring-security-crypto/5.5.1/spring-security-crypto-5.5.1.jar) [INFO] ImageClasspath Entry: org.springframework.cloud:spring-cloud-commons:jar:3.0.3:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-commons/3.0.3/spring-cloud-commons-3.0.3.jar) [INFO] ImageClasspath Entry: org.springframework.security:spring-security-rsa:jar:1.0.10.RELEASE:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/security/spring-security-rsa/1.0.10.RELEASE/spring-security-rsa-1.0.10.RELEASE.jar) [INFO] ImageClasspath Entry: org.bouncycastle:bcpkix-jdk15on:jar:1.68:compile (file:///Users/wangxinxin/.m2/repository/org/bouncycastle/bcpkix-jdk15on/1.68/bcpkix-jdk15on-1.68.jar) [INFO] ImageClasspath Entry: org.bouncycastle:bcprov-jdk15on:jar:1.68:compile (file:///Users/wangxinxin/.m2/repository/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68.jar) [INFO] ImageClasspath Entry: org.springframework.cloud:spring-cloud-config-client:jar:3.0.4:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-config-client/3.0.4/spring-cloud-config-client-3.0.4.jar) [INFO] ImageClasspath Entry: com.fasterxml.jackson.core:jackson-annotations:jar:2.12.3:compile (file:///Users/wangxinxin/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.12.3/jackson-annotations-2.12.3.jar) [INFO] ImageClasspath Entry: com.fasterxml.jackson.core:jackson-databind:jar:2.12.3:compile (file:///Users/wangxinxin/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.12.3/jackson-databind-2.12.3.jar) [INFO] ImageClasspath Entry: com.fasterxml.jackson.core:jackson-core:jar:2.12.3:compile (file:///Users/wangxinxin/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.12.3/jackson-core-2.12.3.jar) [INFO] ImageClasspath Entry: com.google.guava:guava:jar:20.0:compile (file:///Users/wangxinxin/.m2/repository/com/google/guava/guava/20.0/guava-20.0.jar) [INFO] ImageClasspath Entry: org.springframework.boot:spring-boot-starter-data-redis:jar:2.5.2:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-data-redis/2.5.2/spring-boot-starter-data-redis-2.5.2.jar) [INFO] ImageClasspath Entry: org.springframework.data:spring-data-redis:jar:2.5.2:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/data/spring-data-redis/2.5.2/spring-data-redis-2.5.2.jar) [INFO] ImageClasspath Entry: org.springframework.data:spring-data-keyvalue:jar:2.5.2:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/data/spring-data-keyvalue/2.5.2/spring-data-keyvalue-2.5.2.jar) [INFO] ImageClasspath Entry: org.springframework.data:spring-data-commons:jar:2.5.2:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/data/spring-data-commons/2.5.2/spring-data-commons-2.5.2.jar) [INFO] ImageClasspath Entry: org.springframework:spring-tx:jar:5.3.8:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/spring-tx/5.3.8/spring-tx-5.3.8.jar) [INFO] ImageClasspath Entry: org.springframework:spring-oxm:jar:5.3.8:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/spring-oxm/5.3.8/spring-oxm-5.3.8.jar) [INFO] ImageClasspath Entry: org.springframework:spring-context-support:jar:5.3.8:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/spring-context-support/5.3.8/spring-context-support-5.3.8.jar) [INFO] ImageClasspath Entry: io.lettuce:lettuce-core:jar:6.1.3.RELEASE:compile (file:///Users/wangxinxin/.m2/repository/io/lettuce/lettuce-core/6.1.3.RELEASE/lettuce-core-6.1.3.RELEASE.jar) [INFO] ImageClasspath Entry: io.netty:netty-common:jar:4.1.65.Final:compile (file:///Users/wangxinxin/.m2/repository/io/netty/netty-common/4.1.65.Final/netty-common-4.1.65.Final.jar) [WARNING] jar:file:///Users/wangxinxin/.m2/repository/io/netty/netty-common/4.1.65.Final/netty-common-4.1.65.Final.jar!/META-INF/native-image/io.netty/common/native-image.properties does not match recommended META-INF/native-image/${groupId}/${artifactId}/native-image.properties layout. [INFO] ImageClasspath Entry: io.netty:netty-handler:jar:4.1.65.Final:compile (file:///Users/wangxinxin/.m2/repository/io/netty/netty-handler/4.1.65.Final/netty-handler-4.1.65.Final.jar) [WARNING] jar:file:///Users/wangxinxin/.m2/repository/io/netty/netty-handler/4.1.65.Final/netty-handler-4.1.65.Final.jar!/META-INF/native-image/io.netty/handler/native-image.properties does not match recommended META-INF/native-image/${groupId}/${artifactId}/native-image.properties layout. [INFO] ImageClasspath Entry: io.netty:netty-resolver:jar:4.1.65.Final:compile (file:///Users/wangxinxin/.m2/repository/io/netty/netty-resolver/4.1.65.Final/netty-resolver-4.1.65.Final.jar) [INFO] ImageClasspath Entry: io.netty:netty-buffer:jar:4.1.65.Final:compile (file:///Users/wangxinxin/.m2/repository/io/netty/netty-buffer/4.1.65.Final/netty-buffer-4.1.65.Final.jar) [WARNING] jar:file:///Users/wangxinxin/.m2/repository/io/netty/netty-buffer/4.1.65.Final/netty-buffer-4.1.65.Final.jar!/META-INF/native-image/io.netty/buffer/native-image.properties does not match recommended META-INF/native-image/${groupId}/${artifactId}/native-image.properties layout. [INFO] ImageClasspath Entry: io.netty:netty-codec:jar:4.1.65.Final:compile (file:///Users/wangxinxin/.m2/repository/io/netty/netty-codec/4.1.65.Final/netty-codec-4.1.65.Final.jar) [INFO] ImageClasspath Entry: io.netty:netty-transport:jar:4.1.65.Final:compile (file:///Users/wangxinxin/.m2/repository/io/netty/netty-transport/4.1.65.Final/netty-transport-4.1.65.Final.jar) [WARNING] jar:file:///Users/wangxinxin/.m2/repository/io/netty/netty-transport/4.1.65.Final/netty-transport-4.1.65.Final.jar!/META-INF/native-image/io.netty/transport/native-image.properties does not match recommended META-INF/native-image/${groupId}/${artifactId}/native-image.properties layout. [INFO] ImageClasspath Entry: io.projectreactor:reactor-core:jar:3.4.7:compile (file:///Users/wangxinxin/.m2/repository/io/projectreactor/reactor-core/3.4.7/reactor-core-3.4.7.jar) [INFO] ImageClasspath Entry: org.reactivestreams:reactive-streams:jar:1.0.3:compile (file:///Users/wangxinxin/.m2/repository/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar) [INFO] ImageClasspath Entry: org.springframework.retry:spring-retry:jar:1.3.1:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/retry/spring-retry/1.3.1/spring-retry-1.3.1.jar) [INFO] ImageClasspath Entry: org.springframework.boot:spring-boot-starter-aop:jar:2.5.2:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-aop/2.5.2/spring-boot-starter-aop-2.5.2.jar) [INFO] ImageClasspath Entry: org.springframework:spring-aop:jar:5.3.8:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/spring-aop/5.3.8/spring-aop-5.3.8.jar) [INFO] ImageClasspath Entry: org.aspectj:aspectjweaver:jar:1.9.6:compile (file:///Users/wangxinxin/.m2/repository/org/aspectj/aspectjweaver/1.9.6/aspectjweaver-1.9.6.jar) [INFO] ImageClasspath Entry: org.apache.rocketmq:rocketmq-spring-boot-starter:jar:2.0.3:compile (file:///Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-spring-boot-starter/2.0.3/rocketmq-spring-boot-starter-2.0.3.jar) [INFO] ImageClasspath Entry: org.apache.rocketmq:rocketmq-spring-boot:jar:2.0.3:compile (file:///Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-spring-boot/2.0.3/rocketmq-spring-boot-2.0.3.jar) [INFO] ImageClasspath Entry: org.apache.rocketmq:rocketmq-client:jar:4.5.1:compile (file:///Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-client/4.5.1/rocketmq-client-4.5.1.jar) [INFO] ImageClasspath Entry: org.apache.rocketmq:rocketmq-common:jar:4.5.1:compile (file:///Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-common/4.5.1/rocketmq-common-4.5.1.jar) [INFO] ImageClasspath Entry: org.apache.commons:commons-lang3:jar:3.12.0:compile (file:///Users/wangxinxin/.m2/repository/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar) [INFO] ImageClasspath Entry: org.apache.rocketmq:rocketmq-acl:jar:4.5.1:compile (file:///Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-acl/4.5.1/rocketmq-acl-4.5.1.jar) [INFO] ImageClasspath Entry: org.apache.rocketmq:rocketmq-remoting:jar:4.5.1:compile (file:///Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-remoting/4.5.1/rocketmq-remoting-4.5.1.jar) [INFO] ImageClasspath Entry: io.netty:netty-all:jar:4.1.65.Final:compile (file:///Users/wangxinxin/.m2/repository/io/netty/netty-all/4.1.65.Final/netty-all-4.1.65.Final.jar) [WARNING] jar:file:///Users/wangxinxin/.m2/repository/io/netty/netty-all/4.1.65.Final/netty-all-4.1.65.Final.jar!/META-INF/native-image/io.netty/buffer/native-image.properties does not match recommended META-INF/native-image/${groupId}/${artifactId}/native-image.properties layout. [WARNING] jar:file:///Users/wangxinxin/.m2/repository/io/netty/netty-all/4.1.65.Final/netty-all-4.1.65.Final.jar!/META-INF/native-image/io.netty/codec-http2/native-image.properties does not match recommended META-INF/native-image/${groupId}/${artifactId}/native-image.properties layout. [WARNING] jar:file:///Users/wangxinxin/.m2/repository/io/netty/netty-all/4.1.65.Final/netty-all-4.1.65.Final.jar!/META-INF/native-image/io.netty/common/native-image.properties does not match recommended META-INF/native-image/${groupId}/${artifactId}/native-image.properties layout. [WARNING] jar:file:///Users/wangxinxin/.m2/repository/io/netty/netty-all/4.1.65.Final/netty-all-4.1.65.Final.jar!/META-INF/native-image/io.netty/resolver-dns/native-image.properties does not match recommended META-INF/native-image/${groupId}/${artifactId}/native-image.properties layout. [WARNING] jar:file:///Users/wangxinxin/.m2/repository/io/netty/netty-all/4.1.65.Final/netty-all-4.1.65.Final.jar!/META-INF/native-image/io.netty/transport/native-image.properties does not match recommended META-INF/native-image/${groupId}/${artifactId}/native-image.properties layout. [WARNING] jar:file:///Users/wangxinxin/.m2/repository/io/netty/netty-all/4.1.65.Final/netty-all-4.1.65.Final.jar!/META-INF/native-image/io.netty/codec-http/native-image.properties does not match recommended META-INF/native-image/${groupId}/${artifactId}/native-image.properties layout. [WARNING] jar:file:///Users/wangxinxin/.m2/repository/io/netty/netty-all/4.1.65.Final/netty-all-4.1.65.Final.jar!/META-INF/native-image/io.netty/handler/native-image.properties does not match recommended META-INF/native-image/${groupId}/${artifactId}/native-image.properties layout. [INFO] ImageClasspath Entry: io.netty:netty-tcnative-boringssl-static:jar:2.0.40.Final:compile (file:///Users/wangxinxin/.m2/repository/io/netty/netty-tcnative-boringssl-static/2.0.40.Final/netty-tcnative-boringssl-static-2.0.40.Final.jar) [INFO] ImageClasspath Entry: org.apache.rocketmq:rocketmq-logging:jar:4.5.1:compile (file:///Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-logging/4.5.1/rocketmq-logging-4.5.1.jar) [INFO] ImageClasspath Entry: org.apache.rocketmq:rocketmq-srvutil:jar:4.5.1:compile (file:///Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-srvutil/4.5.1/rocketmq-srvutil-4.5.1.jar) [INFO] ImageClasspath Entry: commons-cli:commons-cli:jar:1.2:compile (file:///Users/wangxinxin/.m2/repository/commons-cli/commons-cli/1.2/commons-cli-1.2.jar) [INFO] ImageClasspath Entry: org.springframework.boot:spring-boot-starter-validation:jar:2.5.2:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-validation/2.5.2/spring-boot-starter-validation-2.5.2.jar) [INFO] ImageClasspath Entry: org.hibernate.validator:hibernate-validator:jar:6.2.0.Final:compile (file:///Users/wangxinxin/.m2/repository/org/hibernate/validator/hibernate-validator/6.2.0.Final/hibernate-validator-6.2.0.Final.jar) [INFO] ImageClasspath Entry: jakarta.validation:jakarta.validation-api:jar:2.0.2:compile (file:///Users/wangxinxin/.m2/repository/jakarta/validation/jakarta.validation-api/2.0.2/jakarta.validation-api-2.0.2.jar) [INFO] ImageClasspath Entry: org.jboss.logging:jboss-logging:jar:3.4.2.Final:compile (file:///Users/wangxinxin/.m2/repository/org/jboss/logging/jboss-logging/3.4.2.Final/jboss-logging-3.4.2.Final.jar) [INFO] ImageClasspath Entry: com.fasterxml:classmate:jar:1.5.1:compile (file:///Users/wangxinxin/.m2/repository/com/fasterxml/classmate/1.5.1/classmate-1.5.1.jar) [INFO] ImageClasspath Entry: org.springframework.boot:spring-boot-starter-websocket:jar:2.5.2:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-websocket/2.5.2/spring-boot-starter-websocket-2.5.2.jar) [INFO] ImageClasspath Entry: org.springframework:spring-messaging:jar:5.3.8:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/spring-messaging/5.3.8/spring-messaging-5.3.8.jar) [INFO] ImageClasspath Entry: org.springframework:spring-websocket:jar:5.3.8:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/spring-websocket/5.3.8/spring-websocket-5.3.8.jar) [INFO] ImageClasspath Entry: com.sns.fis:increment-full-msg-common:jar:1.7.9-SNAPSHOT:compile (file:///Users/wangxinxin/.m2/repository/com/sns/fis/increment-full-msg-common/1.7.9-SNAPSHOT/increment-full-msg-common-1.7.9-SNAPSHOT.jar) [INFO] ImageClasspath Entry: com.alibaba:fastjson:jar:1.2.70:compile (file:///Users/wangxinxin/.m2/repository/com/alibaba/fastjson/1.2.70/fastjson-1.2.70.jar) [INFO] ImageClasspath Entry: commons-lang:commons-lang:jar:2.6:compile (file:///Users/wangxinxin/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar) [INFO] ImageClasspath Entry: org.springframework.experimental:spring-native:jar:0.10.1:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/experimental/spring-native/0.10.1/spring-native-0.10.1.jar) [INFO] ImageClasspath Entry: com.sns.fis:snapshot-56-service:jar:0.0.1-SNAPSHOT (file:///Users/wangxinxin/Desktop/code/IR/snapshot-56-service/target/snapshot-56-service-0.0.1-SNAPSHOT.jar) [WARNING] jar:file:///Users/wangxinxin/Desktop/code/IR/snapshot-56-service/target/snapshot-56-service-0.0.1-SNAPSHOT.jar!/META-INF/native-image/org.springframework.aot/spring-aot/native-image.properties does not match recommended META-INF/native-image/${groupId}/${artifactId}/native-image.properties layout. [INFO] Executing: /Users/wangxinxin/.sdkman/candidates/java/current/bin/native-image -cp /Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-web/2.5.2/spring-boot-starter-web-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter/2.5.2/spring-boot-starter-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot/2.5.2/spring-boot-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/2.5.2/spring-boot-autoconfigure-2.5.2.jar:/Users/wangxinxin/.m2/repository/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.jar:/Users/wangxinxin/.m2/repository/org/yaml/snakeyaml/1.28/snakeyaml-1.28.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-json/2.5.2/spring-boot-starter-json-2.5.2.jar:/Users/wangxinxin/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.12.3/jackson-datatype-jdk8-2.12.3.jar:/Users/wangxinxin/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.12.3/jackson-datatype-jsr310-2.12.3.jar:/Users/wangxinxin/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.12.3/jackson-module-parameter-names-2.12.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/2.5.2/spring-boot-starter-tomcat-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/9.0.48/tomcat-embed-core-9.0.48.jar:/Users/wangxinxin/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/9.0.48/tomcat-embed-el-9.0.48.jar:/Users/wangxinxin/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.48/tomcat-embed-websocket-9.0.48.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-web/5.3.8/spring-web-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-beans/5.3.8/spring-beans-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-webmvc/5.3.8/spring-webmvc-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-context/5.3.8/spring-context-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-expression/5.3.8/spring-expression-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-log4j2/2.5.2/spring-boot-starter-log4j2-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/apache/logging/log4j/log4j-slf4j-impl/2.14.1/log4j-slf4j-impl-2.14.1.jar:/Users/wangxinxin/.m2/repository/org/slf4j/slf4j-api/1.7.31/slf4j-api-1.7.31.jar:/Users/wangxinxin/.m2/repository/org/apache/logging/log4j/log4j-api/2.14.1/log4j-api-2.14.1.jar:/Users/wangxinxin/.m2/repository/org/apache/logging/log4j/log4j-core/2.14.1/log4j-core-2.14.1.jar:/Users/wangxinxin/.m2/repository/org/apache/logging/log4j/log4j-jul/2.14.1/log4j-jul-2.14.1.jar:/Users/wangxinxin/.m2/repository/org/slf4j/jul-to-slf4j/1.7.31/jul-to-slf4j-1.7.31.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-consul-discovery/3.0.3/spring-cloud-starter-consul-discovery-3.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-consul/3.0.3/spring-cloud-starter-consul-3.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-consul-core/3.0.3/spring-cloud-consul-core-3.0.3.jar:/Users/wangxinxin/.m2/repository/com/ecwid/consul/consul-api/1.4.5/consul-api-1.4.5.jar:/Users/wangxinxin/.m2/repository/com/google/code/gson/gson/2.8.7/gson-2.8.7.jar:/Users/wangxinxin/.m2/repository/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar:/Users/wangxinxin/.m2/repository/commons-codec/commons-codec/1.15/commons-codec-1.15.jar:/Users/wangxinxin/.m2/repository/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-consul-discovery/3.0.3/spring-cloud-consul-discovery-3.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-loadbalancer/3.0.3/spring-cloud-starter-loadbalancer-3.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-loadbalancer/3.0.3/spring-cloud-loadbalancer-3.0.3.jar:/Users/wangxinxin/.m2/repository/io/projectreactor/addons/reactor-extra/3.4.3/reactor-extra-3.4.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-cache/2.5.2/spring-boot-starter-cache-2.5.2.jar:/Users/wangxinxin/.m2/repository/com/stoyanr/evictor/1.0.0/evictor-1.0.0.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-actuator/2.5.2/spring-boot-starter-actuator-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-actuator-autoconfigure/2.5.2/spring-boot-actuator-autoconfigure-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-actuator/2.5.2/spring-boot-actuator-2.5.2.jar:/Users/wangxinxin/.m2/repository/io/micrometer/micrometer-core/1.7.1/micrometer-core-1.7.1.jar:/Users/wangxinxin/.m2/repository/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.jar:/Users/wangxinxin/.m2/repository/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-stream-rocketmq/0.9.0.RELEASE/spring-cloud-starter-stream-rocketmq-0.9.0.RELEASE.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-stream-binder-rocketmq/0.9.0.RELEASE/spring-cloud-stream-binder-rocketmq-0.9.0.RELEASE.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-stream/3.1.3/spring-cloud-stream-3.1.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/integration/spring-integration-jmx/5.5.1/spring-integration-jmx-5.5.1.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-function-context/3.1.3/spring-cloud-function-context-3.1.3.jar:/Users/wangxinxin/.m2/repository/net/jodah/typetools/0.6.2/typetools-0.6.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-function-core/3.1.3/spring-cloud-function-core-3.1.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-bus-rocketmq/0.9.0.RELEASE/spring-cloud-starter-bus-rocketmq-0.9.0.RELEASE.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-bus/3.0.3/spring-cloud-bus-3.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/integration/spring-integration-core/5.5.1/spring-integration-core-5.5.1.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-core/5.3.8/spring-core-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-jcl/5.3.8/spring-jcl-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-config/3.0.4/spring-cloud-starter-config-3.0.4.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter/3.0.3/spring-cloud-starter-3.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-context/3.0.3/spring-cloud-context-3.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/security/spring-security-crypto/5.5.1/spring-security-crypto-5.5.1.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-commons/3.0.3/spring-cloud-commons-3.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/security/spring-security-rsa/1.0.10.RELEASE/spring-security-rsa-1.0.10.RELEASE.jar:/Users/wangxinxin/.m2/repository/org/bouncycastle/bcpkix-jdk15on/1.68/bcpkix-jdk15on-1.68.jar:/Users/wangxinxin/.m2/repository/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-config-client/3.0.4/spring-cloud-config-client-3.0.4.jar:/Users/wangxinxin/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.12.3/jackson-annotations-2.12.3.jar:/Users/wangxinxin/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.12.3/jackson-databind-2.12.3.jar:/Users/wangxinxin/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.12.3/jackson-core-2.12.3.jar:/Users/wangxinxin/.m2/repository/com/google/guava/guava/20.0/guava-20.0.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-data-redis/2.5.2/spring-boot-starter-data-redis-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/data/spring-data-redis/2.5.2/spring-data-redis-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/data/spring-data-keyvalue/2.5.2/spring-data-keyvalue-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/data/spring-data-commons/2.5.2/spring-data-commons-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-tx/5.3.8/spring-tx-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-oxm/5.3.8/spring-oxm-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-context-support/5.3.8/spring-context-support-5.3.8.jar:/Users/wangxinxin/.m2/repository/io/lettuce/lettuce-core/6.1.3.RELEASE/lettuce-core-6.1.3.RELEASE.jar:/Users/wangxinxin/.m2/repository/io/netty/netty-common/4.1.65.Final/netty-common-4.1.65.Final.jar:/Users/wangxinxin/.m2/repository/io/netty/netty-handler/4.1.65.Final/netty-handler-4.1.65.Final.jar:/Users/wangxinxin/.m2/repository/io/netty/netty-resolver/4.1.65.Final/netty-resolver-4.1.65.Final.jar:/Users/wangxinxin/.m2/repository/io/netty/netty-buffer/4.1.65.Final/netty-buffer-4.1.65.Final.jar:/Users/wangxinxin/.m2/repository/io/netty/netty-codec/4.1.65.Final/netty-codec-4.1.65.Final.jar:/Users/wangxinxin/.m2/repository/io/netty/netty-transport/4.1.65.Final/netty-transport-4.1.65.Final.jar:/Users/wangxinxin/.m2/repository/io/projectreactor/reactor-core/3.4.7/reactor-core-3.4.7.jar:/Users/wangxinxin/.m2/repository/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/retry/spring-retry/1.3.1/spring-retry-1.3.1.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-aop/2.5.2/spring-boot-starter-aop-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-aop/5.3.8/spring-aop-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/aspectj/aspectjweaver/1.9.6/aspectjweaver-1.9.6.jar:/Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-spring-boot-starter/2.0.3/rocketmq-spring-boot-starter-2.0.3.jar:/Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-spring-boot/2.0.3/rocketmq-spring-boot-2.0.3.jar:/Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-client/4.5.1/rocketmq-client-4.5.1.jar:/Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-common/4.5.1/rocketmq-common-4.5.1.jar:/Users/wangxinxin/.m2/repository/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar:/Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-acl/4.5.1/rocketmq-acl-4.5.1.jar:/Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-remoting/4.5.1/rocketmq-remoting-4.5.1.jar:/Users/wangxinxin/.m2/repository/io/netty/netty-all/4.1.65.Final/netty-all-4.1.65.Final.jar:/Users/wangxinxin/.m2/repository/io/netty/netty-tcnative-boringssl-static/2.0.40.Final/netty-tcnative-boringssl-static-2.0.40.Final.jar:/Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-logging/4.5.1/rocketmq-logging-4.5.1.jar:/Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-srvutil/4.5.1/rocketmq-srvutil-4.5.1.jar:/Users/wangxinxin/.m2/repository/commons-cli/commons-cli/1.2/commons-cli-1.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-validation/2.5.2/spring-boot-starter-validation-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/hibernate/validator/hibernate-validator/6.2.0.Final/hibernate-validator-6.2.0.Final.jar:/Users/wangxinxin/.m2/repository/jakarta/validation/jakarta.validation-api/2.0.2/jakarta.validation-api-2.0.2.jar:/Users/wangxinxin/.m2/repository/org/jboss/logging/jboss-logging/3.4.2.Final/jboss-logging-3.4.2.Final.jar:/Users/wangxinxin/.m2/repository/com/fasterxml/classmate/1.5.1/classmate-1.5.1.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-websocket/2.5.2/spring-boot-starter-websocket-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-messaging/5.3.8/spring-messaging-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-websocket/5.3.8/spring-websocket-5.3.8.jar:/Users/wangxinxin/.m2/repository/com/sns/fis/increment-full-msg-common/1.7.9-SNAPSHOT/increment-full-msg-common-1.7.9-SNAPSHOT.jar:/Users/wangxinxin/.m2/repository/com/alibaba/fastjson/1.2.70/fastjson-1.2.70.jar:/Users/wangxinxin/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar:/Users/wangxinxin/.m2/repository/org/springframework/experimental/spring-native/0.10.1/spring-native-0.10.1.jar:/Users/wangxinxin/Desktop/code/IR/snapshot-56-service/target/snapshot-56-service-0.0.1-SNAPSHOT.jar -H:Name=snapshot-56-service [snapshot-56-service:51210] classlist: 6,711.09 ms, 3.01 GB Warning: class initialization of class org.springframework.boot.logging.logback.LogbackLoggingSystem failed with exception java.lang.NoClassDefFoundError: ch/qos/logback/classic/turbo/TurboFilter. This class will be initialized at run time because option --allow-incomplete-classpath is used for image building. Use the option --initialize-at-run-time=org.springframework.boot.logging.logback.LogbackLoggingSystem to explicitly request delayed initialization of this class. [snapshot-56-service:51210] (cap): 3,561.56 ms, 3.01 GB WARNING: Method com.sun.management.OperatingSystemMXBean.getCpuLoad() not found. WARNING: Could not register org.springframework.boot.autoconfigure.mail.MailSenderValidatorAutoConfiguration: allDeclaredConstructors for reflection. Reason: java.lang.NoClassDefFoundError: javax/mail/MessagingException. WARNING: Could not register org.springframework.boot.autoconfigure.mail.MailSenderValidatorAutoConfiguration: allDeclaredMethods for reflection. Reason: java.lang.NoClassDefFoundError: javax/mail/MessagingException. WARNING: Could not register org.springframework.boot.autoconfigure.mail.MailSenderValidatorAutoConfiguration: allDeclaredFields for reflection. Reason: java.lang.NoClassDefFoundError: javax/mail/MessagingException. WARNING: Could not register org.springframework.data.web.config.HateoasAwareSpringDataWebConfiguration: allDeclaredConstructors for reflection. Reason: java.lang.NoClassDefFoundError: org/springframework/hateoas/server/mvc/UriComponentsContributor. WARNING: Could not register org.springframework.data.web.config.HateoasAwareSpringDataWebConfiguration: allDeclaredMethods for reflection. Reason: java.lang.NoClassDefFoundError: org/springframework/hateoas/server/mvc/UriComponentsContributor. WARNING: Could not register org.springframework.data.web.config.HateoasAwareSpringDataWebConfiguration: allDeclaredFields for reflection. Reason: java.lang.NoClassDefFoundError: org/springframework/hateoas/server/mvc/UriComponentsContributor. WARNING: Could not register org.springframework.integration.json.JsonPathUtils: allPublicMethods for reflection. Reason: java.lang.NoClassDefFoundError: [Lcom/jayway/jsonpath/Predicate;. [snapshot-56-service:51210] setup: 5,587.70 ms, 3.01 GB Warning: class initialization of class org.apache.logging.log4j.core.config.yaml.YamlConfiguration failed with exception java.lang.NoClassDefFoundError: com/fasterxml/jackson/dataformat/yaml/YAMLFactory. This class will be initialized at run time because option --allow-incomplete-classpath is used for image building. Use the option --initialize-at-run-time=org.apache.logging.log4j.core.config.yaml.YamlConfiguration to explicitly request delayed initialization of this class. Warning: class initialization of class org.apache.logging.log4j.core.async.AsyncLoggerContext failed with exception java.lang.NoClassDefFoundError: com/lmax/disruptor/EventTranslatorVararg. This class will be initialized at run time because option --allow-incomplete-classpath is used for image building. Use the option --initialize-at-run-time=org.apache.logging.log4j.core.async.AsyncLoggerContext to explicitly request delayed initialization of this class. Warning: class initialization of class org.apache.logging.log4j.core.pattern.JAnsiTextRenderer failed with exception java.lang.NoClassDefFoundError: org/fusesource/jansi/AnsiRenderer$Code. This class will be initialized at run time because option --allow-incomplete-classpath is used for image building. Use the option --initialize-at-run-time=org.apache.logging.log4j.core.pattern.JAnsiTextRenderer to explicitly request delayed initialization of this class. [snapshot-56-service:51210] analysis: 10,451.73 ms, 3.47 GB Fatal error:com.oracle.graal.pointsto.util.AnalysisError$ParsingError: Error encountered while parsing org.graalvm.home.HomeFinder.getInstance() Parsing context: parsing org.graalvm.polyglot.Engine.getVersion(Engine.java:203) parsing com.oracle.truffle.js.scriptengine.GraalJSEngineFactory.getEngineVersion(GraalJSEngineFactory.java:132) parsing com.oracle.truffle.js.scriptengine.GraalJSEngineFactory.getParameter(GraalJSEngineFactory.java:168) parsing org.apache.logging.log4j.core.script.ScriptManager.(ScriptManager.java:84) parsing org.apache.logging.log4j.core.config.AbstractConfiguration.initialize(AbstractConfiguration.java:219) parsing org.apache.logging.log4j.core.config.AbstractConfiguration.start(AbstractConfiguration.java:287) parsing org.apache.logging.log4j.core.LoggerContext.setConfiguration(LoggerContext.java:627) parsing org.apache.logging.log4j.core.LoggerContext.start(LoggerContext.java:304) parsing org.apache.logging.log4j.core.impl.Log4jContextFactory.getContext(Log4jContextFactory.java:242) parsing org.apache.logging.log4j.core.impl.Log4jContextFactory.getContext(Log4jContextFactory.java:47) parsing org.apache.logging.log4j.LogManager.getContext(LogManager.java:176) parsing org.springframework.boot.logging.log4j2.Log4J2LoggingSystem.getLoggerContext(Log4J2LoggingSystem.java:329) parsing org.springframework.boot.logging.log4j2.Log4J2LoggingSystem.cleanUp(Log4J2LoggingSystem.java:310) parsing org.springframework.cloud.bootstrap.LoggingSystemShutdownListener.shutdownLogging(LoggingSystemShutdownListener.java:51) parsing org.springframework.cloud.bootstrap.LoggingSystemShutdownListener.onApplicationEvent(LoggingSystemShutdownListener.java:45) parsing org.springframework.cloud.bootstrap.LoggingSystemShutdownListener.onApplicationEvent(LoggingSystemShutdownListener.java:33) parsing org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:176) parsing org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:162) parsing org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:143) parsing org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:131) parsing org.springframework.boot.DefaultBootstrapContext.close(DefaultBootstrapContext.java:133) parsing org.springframework.boot.SpringApplication.prepareContext(SpringApplication.java:405) parsing org.springframework.boot.SpringApplication.run(SpringApplication.java:337) parsing org.springframework.boot.SpringApplication.run(SpringApplication.java:1343) parsing org.springframework.boot.SpringApplication.run(SpringApplication.java:1332) parsing com.sns.fis.Snapshot56ServiceApplication.main(Snapshot56ServiceApplication.java:21) parsing com.oracle.svm.core.JavaMainWrapper.runCore(JavaMainWrapper.java:146) parsing com.oracle.svm.core.JavaMainWrapper.run(JavaMainWrapper.java:182) parsing com.oracle.svm.core.code.IsolateEnterStub.JavaMainWrapper_run_5087f5482cc9a6abc971913ece43acb471d2631b(generated:0)

at com.oracle.graal.pointsto.util.AnalysisError.parsingError(AnalysisError.java:138)
at com.oracle.graal.pointsto.flow.MethodTypeFlow.doParse(MethodTypeFlow.java:331)
at com.oracle.graal.pointsto.flow.MethodTypeFlow.ensureParsed(MethodTypeFlow.java:302)
at com.oracle.graal.pointsto.flow.MethodTypeFlow.addContext(MethodTypeFlow.java:103)
at com.oracle.graal.pointsto.flow.StaticInvokeTypeFlow.update(InvokeTypeFlow.java:434)
at com.oracle.graal.pointsto.BigBang$2.run(BigBang.java:547)
at com.oracle.graal.pointsto.util.CompletionExecutor.lambda$execute$0(CompletionExecutor.java:173)
at java.util.concurrent.ForkJoinTask$RunnableExecuteAction.exec(ForkJoinTask.java:1402)
at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:175)

Caused by: com.oracle.svm.core.util.UserError$UserException: ImageSingletons do not contain key org.graalvm.home.HomeFinder at com.oracle.svm.core.util.UserError.abort(UserError.java:68) at com.oracle.svm.hosted.ImageSingletonsSupportImpl$HostedManagement.doLookup(ImageSingletonsSupportImpl.java:119) at com.oracle.svm.hosted.ImageSingletonsSupportImpl.lookup(ImageSingletonsSupportImpl.java:44) at org.graalvm.nativeimage.ImageSingletons.lookup(ImageSingletons.java:86) at com.oracle.svm.hosted.snippets.SubstrateGraphBuilderPlugins$43.apply(SubstrateGraphBuilderPlugins.java:1012) at org.graalvm.compiler.nodes.graphbuilderconf.InvocationPlugin.execute(InvocationPlugin.java:189) at org.graalvm.compiler.java.BytecodeParser.applyInvocationPlugin(BytecodeParser.java:2204) at org.graalvm.compiler.java.BytecodeParser.tryInvocationPlugin(BytecodeParser.java:2190) at com.oracle.svm.hosted.phases.AnalysisGraphBuilderPhase$AnalysisBytecodeParser.tryInvocationPlugin(AnalysisGraphBuilderPhase.java:67) at org.graalvm.compiler.java.BytecodeParser.appendInvoke(BytecodeParser.java:1895) at org.graalvm.compiler.java.BytecodeParser.genInvokeStatic(BytecodeParser.java:1654) at org.graalvm.compiler.java.BytecodeParser.genInvokeStatic(BytecodeParser.java:1634) at org.graalvm.compiler.java.BytecodeParser.processBytecode(BytecodeParser.java:5406) at org.graalvm.compiler.java.BytecodeParser.iterateBytecodesForBlock(BytecodeParser.java:3436) at org.graalvm.compiler.java.BytecodeParser.processBlock(BytecodeParser.java:3243) at org.graalvm.compiler.java.BytecodeParser.build(BytecodeParser.java:1109) at org.graalvm.compiler.java.BytecodeParser.buildRootMethod(BytecodeParser.java:1003) at org.graalvm.compiler.java.GraphBuilderPhase$Instance.run(GraphBuilderPhase.java:84) at com.oracle.svm.hosted.phases.SharedGraphBuilderPhase.run(SharedGraphBuilderPhase.java:76) at org.graalvm.compiler.phases.Phase.run(Phase.java:49) at org.graalvm.compiler.phases.BasePhase.apply(BasePhase.java:212) at org.graalvm.compiler.phases.Phase.apply(Phase.java:42) at org.graalvm.compiler.phases.Phase.apply(Phase.java:38) at com.oracle.graal.pointsto.flow.MethodTypeFlowBuilder.parse(MethodTypeFlowBuilder.java:223) at com.oracle.graal.pointsto.flow.MethodTypeFlowBuilder.apply(MethodTypeFlowBuilder.java:357) at com.oracle.graal.pointsto.flow.MethodTypeFlow.doParse(MethodTypeFlow.java:313) ... 10 more Error: Image build request failed with exit status 1 [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 50.837 s [INFO] Finished at: 2021-07-10T10:51:55+08:00 [INFO] ------------------------------------------------------------------------ [WARNING] The requested profile "native" could not be activated because it does not exist. [ERROR] Failed to execute goal org.graalvm.buildtools:native-maven-plugin:0.9.0:build (build-native) on project snapshot-56-service: Execution of /Users/wangxinxin/.sdkman/candidates/java/current/bin/native-image -cp /Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-web/2.5.2/spring-boot-starter-web-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter/2.5.2/spring-boot-starter-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot/2.5.2/spring-boot-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/2.5.2/spring-boot-autoconfigure-2.5.2.jar:/Users/wangxinxin/.m2/repository/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.jar:/Users/wangxinxin/.m2/repository/org/yaml/snakeyaml/1.28/snakeyaml-1.28.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-json/2.5.2/spring-boot-starter-json-2.5.2.jar:/Users/wangxinxin/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.12.3/jackson-datatype-jdk8-2.12.3.jar:/Users/wangxinxin/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.12.3/jackson-datatype-jsr310-2.12.3.jar:/Users/wangxinxin/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.12.3/jackson-module-parameter-names-2.12.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/2.5.2/spring-boot-starter-tomcat-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/9.0.48/tomcat-embed-core-9.0.48.jar:/Users/wangxinxin/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/9.0.48/tomcat-embed-el-9.0.48.jar:/Users/wangxinxin/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.48/tomcat-embed-websocket-9.0.48.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-web/5.3.8/spring-web-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-beans/5.3.8/spring-beans-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-webmvc/5.3.8/spring-webmvc-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-context/5.3.8/spring-context-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-expression/5.3.8/spring-expression-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-log4j2/2.5.2/spring-boot-starter-log4j2-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/apache/logging/log4j/log4j-slf4j-impl/2.14.1/log4j-slf4j-impl-2.14.1.jar:/Users/wangxinxin/.m2/repository/org/slf4j/slf4j-api/1.7.31/slf4j-api-1.7.31.jar:/Users/wangxinxin/.m2/repository/org/apache/logging/log4j/log4j-api/2.14.1/log4j-api-2.14.1.jar:/Users/wangxinxin/.m2/repository/org/apache/logging/log4j/log4j-core/2.14.1/log4j-core-2.14.1.jar:/Users/wangxinxin/.m2/repository/org/apache/logging/log4j/log4j-jul/2.14.1/log4j-jul-2.14.1.jar:/Users/wangxinxin/.m2/repository/org/slf4j/jul-to-slf4j/1.7.31/jul-to-slf4j-1.7.31.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-consul-discovery/3.0.3/spring-cloud-starter-consul-discovery-3.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-consul/3.0.3/spring-cloud-starter-consul-3.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-consul-core/3.0.3/spring-cloud-consul-core-3.0.3.jar:/Users/wangxinxin/.m2/repository/com/ecwid/consul/consul-api/1.4.5/consul-api-1.4.5.jar:/Users/wangxinxin/.m2/repository/com/google/code/gson/gson/2.8.7/gson-2.8.7.jar:/Users/wangxinxin/.m2/repository/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar:/Users/wangxinxin/.m2/repository/commons-codec/commons-codec/1.15/commons-codec-1.15.jar:/Users/wangxinxin/.m2/repository/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-consul-discovery/3.0.3/spring-cloud-consul-discovery-3.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-loadbalancer/3.0.3/spring-cloud-starter-loadbalancer-3.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-loadbalancer/3.0.3/spring-cloud-loadbalancer-3.0.3.jar:/Users/wangxinxin/.m2/repository/io/projectreactor/addons/reactor-extra/3.4.3/reactor-extra-3.4.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-cache/2.5.2/spring-boot-starter-cache-2.5.2.jar:/Users/wangxinxin/.m2/repository/com/stoyanr/evictor/1.0.0/evictor-1.0.0.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-actuator/2.5.2/spring-boot-starter-actuator-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-actuator-autoconfigure/2.5.2/spring-boot-actuator-autoconfigure-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-actuator/2.5.2/spring-boot-actuator-2.5.2.jar:/Users/wangxinxin/.m2/repository/io/micrometer/micrometer-core/1.7.1/micrometer-core-1.7.1.jar:/Users/wangxinxin/.m2/repository/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.jar:/Users/wangxinxin/.m2/repository/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-stream-rocketmq/0.9.0.RELEASE/spring-cloud-starter-stream-rocketmq-0.9.0.RELEASE.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-stream-binder-rocketmq/0.9.0.RELEASE/spring-cloud-stream-binder-rocketmq-0.9.0.RELEASE.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-stream/3.1.3/spring-cloud-stream-3.1.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/integration/spring-integration-jmx/5.5.1/spring-integration-jmx-5.5.1.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-function-context/3.1.3/spring-cloud-function-context-3.1.3.jar:/Users/wangxinxin/.m2/repository/net/jodah/typetools/0.6.2/typetools-0.6.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-function-core/3.1.3/spring-cloud-function-core-3.1.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-bus-rocketmq/0.9.0.RELEASE/spring-cloud-starter-bus-rocketmq-0.9.0.RELEASE.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-bus/3.0.3/spring-cloud-bus-3.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/integration/spring-integration-core/5.5.1/spring-integration-core-5.5.1.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-core/5.3.8/spring-core-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-jcl/5.3.8/spring-jcl-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-config/3.0.4/spring-cloud-starter-config-3.0.4.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter/3.0.3/spring-cloud-starter-3.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-context/3.0.3/spring-cloud-context-3.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/security/spring-security-crypto/5.5.1/spring-security-crypto-5.5.1.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-commons/3.0.3/spring-cloud-commons-3.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/security/spring-security-rsa/1.0.10.RELEASE/spring-security-rsa-1.0.10.RELEASE.jar:/Users/wangxinxin/.m2/repository/org/bouncycastle/bcpkix-jdk15on/1.68/bcpkix-jdk15on-1.68.jar:/Users/wangxinxin/.m2/repository/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-config-client/3.0.4/spring-cloud-config-client-3.0.4.jar:/Users/wangxinxin/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.12.3/jackson-annotations-2.12.3.jar:/Users/wangxinxin/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.12.3/jackson-databind-2.12.3.jar:/Users/wangxinxin/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.12.3/jackson-core-2.12.3.jar:/Users/wangxinxin/.m2/repository/com/google/guava/guava/20.0/guava-20.0.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-data-redis/2.5.2/spring-boot-starter-data-redis-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/data/spring-data-redis/2.5.2/spring-data-redis-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/data/spring-data-keyvalue/2.5.2/spring-data-keyvalue-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/data/spring-data-commons/2.5.2/spring-data-commons-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-tx/5.3.8/spring-tx-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-oxm/5.3.8/spring-oxm-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-context-support/5.3.8/spring-context-support-5.3.8.jar:/Users/wangxinxin/.m2/repository/io/lettuce/lettuce-core/6.1.3.RELEASE/lettuce-core-6.1.3.RELEASE.jar:/Users/wangxinxin/.m2/repository/io/netty/netty-common/4.1.65.Final/netty-common-4.1.65.Final.jar:/Users/wangxinxin/.m2/repository/io/netty/netty-handler/4.1.65.Final/netty-handler-4.1.65.Final.jar:/Users/wangxinxin/.m2/repository/io/netty/netty-resolver/4.1.65.Final/netty-resolver-4.1.65.Final.jar:/Users/wangxinxin/.m2/repository/io/netty/netty-buffer/4.1.65.Final/netty-buffer-4.1.65.Final.jar:/Users/wangxinxin/.m2/repository/io/netty/netty-codec/4.1.65.Final/netty-codec-4.1.65.Final.jar:/Users/wangxinxin/.m2/repository/io/netty/netty-transport/4.1.65.Final/netty-transport-4.1.65.Final.jar:/Users/wangxinxin/.m2/repository/io/projectreactor/reactor-core/3.4.7/reactor-core-3.4.7.jar:/Users/wangxinxin/.m2/repository/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/retry/spring-retry/1.3.1/spring-retry-1.3.1.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-aop/2.5.2/spring-boot-starter-aop-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-aop/5.3.8/spring-aop-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/aspectj/aspectjweaver/1.9.6/aspectjweaver-1.9.6.jar:/Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-spring-boot-starter/2.0.3/rocketmq-spring-boot-starter-2.0.3.jar:/Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-spring-boot/2.0.3/rocketmq-spring-boot-2.0.3.jar:/Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-client/4.5.1/rocketmq-client-4.5.1.jar:/Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-common/4.5.1/rocketmq-common-4.5.1.jar:/Users/wangxinxin/.m2/repository/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar:/Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-acl/4.5.1/rocketmq-acl-4.5.1.jar:/Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-remoting/4.5.1/rocketmq-remoting-4.5.1.jar:/Users/wangxinxin/.m2/repository/io/netty/netty-all/4.1.65.Final/netty-all-4.1.65.Final.jar:/Users/wangxinxin/.m2/repository/io/netty/netty-tcnative-boringssl-static/2.0.40.Final/netty-tcnative-boringssl-static-2.0.40.Final.jar:/Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-logging/4.5.1/rocketmq-logging-4.5.1.jar:/Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-srvutil/4.5.1/rocketmq-srvutil-4.5.1.jar:/Users/wangxinxin/.m2/repository/commons-cli/commons-cli/1.2/commons-cli-1.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-validation/2.5.2/spring-boot-starter-validation-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/hibernate/validator/hibernate-validator/6.2.0.Final/hibernate-validator-6.2.0.Final.jar:/Users/wangxinxin/.m2/repository/jakarta/validation/jakarta.validation-api/2.0.2/jakarta.validation-api-2.0.2.jar:/Users/wangxinxin/.m2/repository/org/jboss/logging/jboss-logging/3.4.2.Final/jboss-logging-3.4.2.Final.jar:/Users/wangxinxin/.m2/repository/com/fasterxml/classmate/1.5.1/classmate-1.5.1.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-websocket/2.5.2/spring-boot-starter-websocket-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-messaging/5.3.8/spring-messaging-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-websocket/5.3.8/spring-websocket-5.3.8.jar:/Users/wangxinxin/.m2/repository/com/sns/fis/increment-full-msg-common/1.7.9-SNAPSHOT/increment-full-msg-common-1.7.9-SNAPSHOT.jar:/Users/wangxinxin/.m2/repository/com/alibaba/fastjson/1.2.70/fastjson-1.2.70.jar:/Users/wangxinxin/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar:/Users/wangxinxin/.m2/repository/org/springframework/experimental/spring-native/0.10.1/spring-native-0.10.1.jar:/Users/wangxinxin/Desktop/code/IR/snapshot-56-service/target/snapshot-56-service-0.0.1-SNAPSHOT.jar -H:Name=snapshot-56-service returned non-zero result -> [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 ✘ wangxinxin@CN0614006847M  ~/Desktop/code/IR/snapshot-56-service   pilot2-prod ±✚ 

ttddyy commented 3 years ago

Log4j2 is not supported yet. You could track https://github.com/spring-projects-experimental/spring-native/issues/115

winer632 commented 3 years ago

115

I removed Log4j2 dependency from pom.xml but still got error. You can refer to my newly modified demo project. https://drive.google.com/drive/folders/1PbcxU6_GpsVrFoMlsCqcAzd0eKaVZY1r?usp=sharing

amework/cloud/spring-cloud-starter-loadbalancer/3.0.3/spring-cloud-starter-loadbalancer-3.0.3.jar) [INFO] ImageClasspath Entry: org.springframework.cloud:spring-cloud-loadbalancer:jar:3.0.3:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-loadbalancer/3.0.3/spring-cloud-loadbalancer-3.0.3.jar) [INFO] ImageClasspath Entry: io.projectreactor.addons:reactor-extra:jar:3.4.3:compile (file:///Users/wangxinxin/.m2/repository/io/projectreactor/addons/reactor-extra/3.4.3/reactor-extra-3.4.3.jar) [INFO] ImageClasspath Entry: org.springframework.boot:spring-boot-starter-cache:jar:2.5.2:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-cache/2.5.2/spring-boot-starter-cache-2.5.2.jar) [INFO] ImageClasspath Entry: com.stoyanr:evictor:jar:1.0.0:compile (file:///Users/wangxinxin/.m2/repository/com/stoyanr/evictor/1.0.0/evictor-1.0.0.jar) [INFO] ImageClasspath Entry: org.springframework.boot:spring-boot-starter-actuator:jar:2.5.2:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-actuator/2.5.2/spring-boot-starter-actuator-2.5.2.jar) [INFO] ImageClasspath Entry: org.springframework.boot:spring-boot-actuator-autoconfigure:jar:2.5.2:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-actuator-autoconfigure/2.5.2/spring-boot-actuator-autoconfigure-2.5.2.jar) [INFO] ImageClasspath Entry: org.springframework.boot:spring-boot-actuator:jar:2.5.2:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-actuator/2.5.2/spring-boot-actuator-2.5.2.jar) [INFO] ImageClasspath Entry: io.micrometer:micrometer-core:jar:1.7.1:compile (file:///Users/wangxinxin/.m2/repository/io/micrometer/micrometer-core/1.7.1/micrometer-core-1.7.1.jar) [INFO] ImageClasspath Entry: org.hdrhistogram:HdrHistogram:jar:2.1.12:compile (file:///Users/wangxinxin/.m2/repository/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.jar) [INFO] ImageClasspath Entry: org.latencyutils:LatencyUtils:jar:2.0.3:runtime (file:///Users/wangxinxin/.m2/repository/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.jar) [INFO] ImageClasspath Entry: org.springframework.cloud:spring-cloud-starter-stream-rocketmq:jar:0.9.0.RELEASE:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-stream-rocketmq/0.9.0.RELEASE/spring-cloud-starter-stream-rocketmq-0.9.0.RELEASE.jar) [INFO] ImageClasspath Entry: org.springframework.cloud:spring-cloud-stream-binder-rocketmq:jar:0.9.0.RELEASE:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-stream-binder-rocketmq/0.9.0.RELEASE/spring-cloud-stream-binder-rocketmq-0.9.0.RELEASE.jar) [INFO] ImageClasspath Entry: org.springframework.cloud:spring-cloud-stream:jar:3.1.3:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-stream/3.1.3/spring-cloud-stream-3.1.3.jar) [INFO] ImageClasspath Entry: org.springframework.integration:spring-integration-jmx:jar:5.5.1:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/integration/spring-integration-jmx/5.5.1/spring-integration-jmx-5.5.1.jar) [INFO] ImageClasspath Entry: org.springframework.cloud:spring-cloud-function-context:jar:3.1.3:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-function-context/3.1.3/spring-cloud-function-context-3.1.3.jar) [INFO] ImageClasspath Entry: net.jodah:typetools:jar:0.6.2:compile (file:///Users/wangxinxin/.m2/repository/net/jodah/typetools/0.6.2/typetools-0.6.2.jar) [INFO] ImageClasspath Entry: org.springframework.cloud:spring-cloud-function-core:jar:3.1.3:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-function-core/3.1.3/spring-cloud-function-core-3.1.3.jar) [INFO] ImageClasspath Entry: org.springframework.cloud:spring-cloud-starter-bus-rocketmq:jar:0.9.0.RELEASE:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-bus-rocketmq/0.9.0.RELEASE/spring-cloud-starter-bus-rocketmq-0.9.0.RELEASE.jar) [INFO] ImageClasspath Entry: org.springframework.cloud:spring-cloud-bus:jar:3.0.3:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-bus/3.0.3/spring-cloud-bus-3.0.3.jar) [INFO] ImageClasspath Entry: org.springframework.integration:spring-integration-core:jar:5.5.1:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/integration/spring-integration-core/5.5.1/spring-integration-core-5.5.1.jar) [INFO] ImageClasspath Entry: org.slf4j:slf4j-api:jar:1.7.31:compile (file:///Users/wangxinxin/.m2/repository/org/slf4j/slf4j-api/1.7.31/slf4j-api-1.7.31.jar) [INFO] ImageClasspath Entry: org.springframework:spring-core:jar:5.3.8:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/spring-core/5.3.8/spring-core-5.3.8.jar) [INFO] ImageClasspath Entry: org.springframework:spring-jcl:jar:5.3.8:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/spring-jcl/5.3.8/spring-jcl-5.3.8.jar) [INFO] ImageClasspath Entry: org.springframework.cloud:spring-cloud-starter-config:jar:3.0.4:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-config/3.0.4/spring-cloud-starter-config-3.0.4.jar) [INFO] ImageClasspath Entry: org.springframework.cloud:spring-cloud-starter:jar:3.0.3:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter/3.0.3/spring-cloud-starter-3.0.3.jar) [INFO] ImageClasspath Entry: org.springframework.cloud:spring-cloud-context:jar:3.0.3:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-context/3.0.3/spring-cloud-context-3.0.3.jar) [INFO] ImageClasspath Entry: org.springframework.security:spring-security-crypto:jar:5.5.1:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/security/spring-security-crypto/5.5.1/spring-security-crypto-5.5.1.jar) [INFO] ImageClasspath Entry: org.springframework.cloud:spring-cloud-commons:jar:3.0.3:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-commons/3.0.3/spring-cloud-commons-3.0.3.jar) [INFO] ImageClasspath Entry: org.springframework.security:spring-security-rsa:jar:1.0.10.RELEASE:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/security/spring-security-rsa/1.0.10.RELEASE/spring-security-rsa-1.0.10.RELEASE.jar) [INFO] ImageClasspath Entry: org.bouncycastle:bcpkix-jdk15on:jar:1.68:compile (file:///Users/wangxinxin/.m2/repository/org/bouncycastle/bcpkix-jdk15on/1.68/bcpkix-jdk15on-1.68.jar) [INFO] ImageClasspath Entry: org.bouncycastle:bcprov-jdk15on:jar:1.68:compile (file:///Users/wangxinxin/.m2/repository/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68.jar) [INFO] ImageClasspath Entry: org.springframework.cloud:spring-cloud-config-client:jar:3.0.4:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-config-client/3.0.4/spring-cloud-config-client-3.0.4.jar) [INFO] ImageClasspath Entry: com.fasterxml.jackson.core:jackson-annotations:jar:2.12.3:compile (file:///Users/wangxinxin/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.12.3/jackson-annotations-2.12.3.jar) [INFO] ImageClasspath Entry: com.fasterxml.jackson.core:jackson-databind:jar:2.12.3:compile (file:///Users/wangxinxin/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.12.3/jackson-databind-2.12.3.jar) [INFO] ImageClasspath Entry: com.fasterxml.jackson.core:jackson-core:jar:2.12.3:compile (file:///Users/wangxinxin/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.12.3/jackson-core-2.12.3.jar) [INFO] ImageClasspath Entry: com.google.guava:guava:jar:20.0:compile (file:///Users/wangxinxin/.m2/repository/com/google/guava/guava/20.0/guava-20.0.jar) [INFO] ImageClasspath Entry: org.springframework.boot:spring-boot-starter-data-redis:jar:2.5.2:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-data-redis/2.5.2/spring-boot-starter-data-redis-2.5.2.jar) [INFO] ImageClasspath Entry: org.springframework.data:spring-data-redis:jar:2.5.2:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/data/spring-data-redis/2.5.2/spring-data-redis-2.5.2.jar) [INFO] ImageClasspath Entry: org.springframework.data:spring-data-keyvalue:jar:2.5.2:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/data/spring-data-keyvalue/2.5.2/spring-data-keyvalue-2.5.2.jar) [INFO] ImageClasspath Entry: org.springframework.data:spring-data-commons:jar:2.5.2:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/data/spring-data-commons/2.5.2/spring-data-commons-2.5.2.jar) [INFO] ImageClasspath Entry: org.springframework:spring-tx:jar:5.3.8:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/spring-tx/5.3.8/spring-tx-5.3.8.jar) [INFO] ImageClasspath Entry: org.springframework:spring-oxm:jar:5.3.8:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/spring-oxm/5.3.8/spring-oxm-5.3.8.jar) [INFO] ImageClasspath Entry: org.springframework:spring-context-support:jar:5.3.8:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/spring-context-support/5.3.8/spring-context-support-5.3.8.jar) [INFO] ImageClasspath Entry: io.lettuce:lettuce-core:jar:6.1.3.RELEASE:compile (file:///Users/wangxinxin/.m2/repository/io/lettuce/lettuce-core/6.1.3.RELEASE/lettuce-core-6.1.3.RELEASE.jar) [INFO] ImageClasspath Entry: io.netty:netty-common:jar:4.1.65.Final:compile (file:///Users/wangxinxin/.m2/repository/io/netty/netty-common/4.1.65.Final/netty-common-4.1.65.Final.jar) [WARNING] jar:file:///Users/wangxinxin/.m2/repository/io/netty/netty-common/4.1.65.Final/netty-common-4.1.65.Final.jar!/META-INF/native-image/io.netty/common/native-image.properties does not match recommended META-INF/native-image/${groupId}/${artifactId}/native-image.properties layout. [INFO] ImageClasspath Entry: io.netty:netty-handler:jar:4.1.65.Final:compile (file:///Users/wangxinxin/.m2/repository/io/netty/netty-handler/4.1.65.Final/netty-handler-4.1.65.Final.jar) [WARNING] jar:file:///Users/wangxinxin/.m2/repository/io/netty/netty-handler/4.1.65.Final/netty-handler-4.1.65.Final.jar!/META-INF/native-image/io.netty/handler/native-image.properties does not match recommended META-INF/native-image/${groupId}/${artifactId}/native-image.properties layout. [INFO] ImageClasspath Entry: io.netty:netty-resolver:jar:4.1.65.Final:compile (file:///Users/wangxinxin/.m2/repository/io/netty/netty-resolver/4.1.65.Final/netty-resolver-4.1.65.Final.jar) [INFO] ImageClasspath Entry: io.netty:netty-buffer:jar:4.1.65.Final:compile (file:///Users/wangxinxin/.m2/repository/io/netty/netty-buffer/4.1.65.Final/netty-buffer-4.1.65.Final.jar) [WARNING] jar:file:///Users/wangxinxin/.m2/repository/io/netty/netty-buffer/4.1.65.Final/netty-buffer-4.1.65.Final.jar!/META-INF/native-image/io.netty/buffer/native-image.properties does not match recommended META-INF/native-image/${groupId}/${artifactId}/native-image.properties layout. [INFO] ImageClasspath Entry: io.netty:netty-codec:jar:4.1.65.Final:compile (file:///Users/wangxinxin/.m2/repository/io/netty/netty-codec/4.1.65.Final/netty-codec-4.1.65.Final.jar) [INFO] ImageClasspath Entry: io.netty:netty-transport:jar:4.1.65.Final:compile (file:///Users/wangxinxin/.m2/repository/io/netty/netty-transport/4.1.65.Final/netty-transport-4.1.65.Final.jar) [WARNING] jar:file:///Users/wangxinxin/.m2/repository/io/netty/netty-transport/4.1.65.Final/netty-transport-4.1.65.Final.jar!/META-INF/native-image/io.netty/transport/native-image.properties does not match recommended META-INF/native-image/${groupId}/${artifactId}/native-image.properties layout. [INFO] ImageClasspath Entry: io.projectreactor:reactor-core:jar:3.4.7:compile (file:///Users/wangxinxin/.m2/repository/io/projectreactor/reactor-core/3.4.7/reactor-core-3.4.7.jar) [INFO] ImageClasspath Entry: org.reactivestreams:reactive-streams:jar:1.0.3:compile (file:///Users/wangxinxin/.m2/repository/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar) [INFO] ImageClasspath Entry: org.springframework.retry:spring-retry:jar:1.3.1:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/retry/spring-retry/1.3.1/spring-retry-1.3.1.jar) [INFO] ImageClasspath Entry: org.springframework.boot:spring-boot-starter-aop:jar:2.5.2:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-aop/2.5.2/spring-boot-starter-aop-2.5.2.jar) [INFO] ImageClasspath Entry: org.springframework:spring-aop:jar:5.3.8:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/spring-aop/5.3.8/spring-aop-5.3.8.jar) [INFO] ImageClasspath Entry: org.aspectj:aspectjweaver:jar:1.9.6:compile (file:///Users/wangxinxin/.m2/repository/org/aspectj/aspectjweaver/1.9.6/aspectjweaver-1.9.6.jar) [INFO] ImageClasspath Entry: org.apache.rocketmq:rocketmq-spring-boot-starter:jar:2.0.3:compile (file:///Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-spring-boot-starter/2.0.3/rocketmq-spring-boot-starter-2.0.3.jar) [INFO] ImageClasspath Entry: org.apache.rocketmq:rocketmq-spring-boot:jar:2.0.3:compile (file:///Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-spring-boot/2.0.3/rocketmq-spring-boot-2.0.3.jar) [INFO] ImageClasspath Entry: org.apache.rocketmq:rocketmq-client:jar:4.5.1:compile (file:///Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-client/4.5.1/rocketmq-client-4.5.1.jar) [INFO] ImageClasspath Entry: org.apache.rocketmq:rocketmq-common:jar:4.5.1:compile (file:///Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-common/4.5.1/rocketmq-common-4.5.1.jar) [INFO] ImageClasspath Entry: org.apache.commons:commons-lang3:jar:3.12.0:compile (file:///Users/wangxinxin/.m2/repository/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar) [INFO] ImageClasspath Entry: org.apache.rocketmq:rocketmq-acl:jar:4.5.1:compile (file:///Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-acl/4.5.1/rocketmq-acl-4.5.1.jar) [INFO] ImageClasspath Entry: org.apache.rocketmq:rocketmq-remoting:jar:4.5.1:compile (file:///Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-remoting/4.5.1/rocketmq-remoting-4.5.1.jar) [INFO] ImageClasspath Entry: io.netty:netty-all:jar:4.1.65.Final:compile (file:///Users/wangxinxin/.m2/repository/io/netty/netty-all/4.1.65.Final/netty-all-4.1.65.Final.jar) [WARNING] jar:file:///Users/wangxinxin/.m2/repository/io/netty/netty-all/4.1.65.Final/netty-all-4.1.65.Final.jar!/META-INF/native-image/io.netty/buffer/native-image.properties does not match recommended META-INF/native-image/${groupId}/${artifactId}/native-image.properties layout. [WARNING] jar:file:///Users/wangxinxin/.m2/repository/io/netty/netty-all/4.1.65.Final/netty-all-4.1.65.Final.jar!/META-INF/native-image/io.netty/codec-http2/native-image.properties does not match recommended META-INF/native-image/${groupId}/${artifactId}/native-image.properties layout. [WARNING] jar:file:///Users/wangxinxin/.m2/repository/io/netty/netty-all/4.1.65.Final/netty-all-4.1.65.Final.jar!/META-INF/native-image/io.netty/common/native-image.properties does not match recommended META-INF/native-image/${groupId}/${artifactId}/native-image.properties layout. [WARNING] jar:file:///Users/wangxinxin/.m2/repository/io/netty/netty-all/4.1.65.Final/netty-all-4.1.65.Final.jar!/META-INF/native-image/io.netty/resolver-dns/native-image.properties does not match recommended META-INF/native-image/${groupId}/${artifactId}/native-image.properties layout. [WARNING] jar:file:///Users/wangxinxin/.m2/repository/io/netty/netty-all/4.1.65.Final/netty-all-4.1.65.Final.jar!/META-INF/native-image/io.netty/transport/native-image.properties does not match recommended META-INF/native-image/${groupId}/${artifactId}/native-image.properties layout. [WARNING] jar:file:///Users/wangxinxin/.m2/repository/io/netty/netty-all/4.1.65.Final/netty-all-4.1.65.Final.jar!/META-INF/native-image/io.netty/codec-http/native-image.properties does not match recommended META-INF/native-image/${groupId}/${artifactId}/native-image.properties layout. [WARNING] jar:file:///Users/wangxinxin/.m2/repository/io/netty/netty-all/4.1.65.Final/netty-all-4.1.65.Final.jar!/META-INF/native-image/io.netty/handler/native-image.properties does not match recommended META-INF/native-image/${groupId}/${artifactId}/native-image.properties layout. [INFO] ImageClasspath Entry: io.netty:netty-tcnative-boringssl-static:jar:2.0.40.Final:compile (file:///Users/wangxinxin/.m2/repository/io/netty/netty-tcnative-boringssl-static/2.0.40.Final/netty-tcnative-boringssl-static-2.0.40.Final.jar) [INFO] ImageClasspath Entry: org.apache.rocketmq:rocketmq-logging:jar:4.5.1:compile (file:///Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-logging/4.5.1/rocketmq-logging-4.5.1.jar) [INFO] ImageClasspath Entry: org.apache.rocketmq:rocketmq-srvutil:jar:4.5.1:compile (file:///Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-srvutil/4.5.1/rocketmq-srvutil-4.5.1.jar) [INFO] ImageClasspath Entry: commons-cli:commons-cli:jar:1.2:compile (file:///Users/wangxinxin/.m2/repository/commons-cli/commons-cli/1.2/commons-cli-1.2.jar) [INFO] ImageClasspath Entry: org.springframework.boot:spring-boot-starter-validation:jar:2.5.2:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-validation/2.5.2/spring-boot-starter-validation-2.5.2.jar) [INFO] ImageClasspath Entry: org.hibernate.validator:hibernate-validator:jar:6.2.0.Final:compile (file:///Users/wangxinxin/.m2/repository/org/hibernate/validator/hibernate-validator/6.2.0.Final/hibernate-validator-6.2.0.Final.jar) [INFO] ImageClasspath Entry: jakarta.validation:jakarta.validation-api:jar:2.0.2:compile (file:///Users/wangxinxin/.m2/repository/jakarta/validation/jakarta.validation-api/2.0.2/jakarta.validation-api-2.0.2.jar) [INFO] ImageClasspath Entry: org.jboss.logging:jboss-logging:jar:3.4.2.Final:compile (file:///Users/wangxinxin/.m2/repository/org/jboss/logging/jboss-logging/3.4.2.Final/jboss-logging-3.4.2.Final.jar) [INFO] ImageClasspath Entry: com.fasterxml:classmate:jar:1.5.1:compile (file:///Users/wangxinxin/.m2/repository/com/fasterxml/classmate/1.5.1/classmate-1.5.1.jar) [INFO] ImageClasspath Entry: org.springframework.boot:spring-boot-starter-websocket:jar:2.5.2:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-websocket/2.5.2/spring-boot-starter-websocket-2.5.2.jar) [INFO] ImageClasspath Entry: org.springframework:spring-messaging:jar:5.3.8:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/spring-messaging/5.3.8/spring-messaging-5.3.8.jar) [INFO] ImageClasspath Entry: org.springframework:spring-websocket:jar:5.3.8:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/spring-websocket/5.3.8/spring-websocket-5.3.8.jar) [INFO] ImageClasspath Entry: com.sns.fis:increment-full-msg-common:jar:1.7.9-SNAPSHOT:compile (file:///Users/wangxinxin/.m2/repository/com/sns/fis/increment-full-msg-common/1.7.9-SNAPSHOT/increment-full-msg-common-1.7.9-SNAPSHOT.jar) [INFO] ImageClasspath Entry: com.alibaba:fastjson:jar:1.2.70:compile (file:///Users/wangxinxin/.m2/repository/com/alibaba/fastjson/1.2.70/fastjson-1.2.70.jar) [INFO] ImageClasspath Entry: commons-lang:commons-lang:jar:2.6:compile (file:///Users/wangxinxin/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar) [INFO] ImageClasspath Entry: org.springframework.experimental:spring-native:jar:0.10.1:compile (file:///Users/wangxinxin/.m2/repository/org/springframework/experimental/spring-native/0.10.1/spring-native-0.10.1.jar) [INFO] ImageClasspath Entry: com.sns.fis:snapshot-56-service:jar:0.0.1-SNAPSHOT (file:///Users/wangxinxin/Desktop/code/IR/snapshot-56-service/target/snapshot-56-service-0.0.1-SNAPSHOT.jar) [WARNING] jar:file:///Users/wangxinxin/Desktop/code/IR/snapshot-56-service/target/snapshot-56-service-0.0.1-SNAPSHOT.jar!/META-INF/native-image/org.springframework.aot/spring-aot/native-image.properties does not match recommended META-INF/native-image/${groupId}/${artifactId}/native-image.properties layout. [INFO] Executing: /Users/wangxinxin/.sdkman/candidates/java/current/bin/native-image -cp /Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-web/2.5.2/spring-boot-starter-web-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter/2.5.2/spring-boot-starter-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot/2.5.2/spring-boot-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/2.5.2/spring-boot-autoconfigure-2.5.2.jar:/Users/wangxinxin/.m2/repository/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.jar:/Users/wangxinxin/.m2/repository/org/yaml/snakeyaml/1.28/snakeyaml-1.28.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-json/2.5.2/spring-boot-starter-json-2.5.2.jar:/Users/wangxinxin/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.12.3/jackson-datatype-jdk8-2.12.3.jar:/Users/wangxinxin/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.12.3/jackson-datatype-jsr310-2.12.3.jar:/Users/wangxinxin/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.12.3/jackson-module-parameter-names-2.12.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/2.5.2/spring-boot-starter-tomcat-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/9.0.48/tomcat-embed-core-9.0.48.jar:/Users/wangxinxin/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/9.0.48/tomcat-embed-el-9.0.48.jar:/Users/wangxinxin/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.48/tomcat-embed-websocket-9.0.48.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-web/5.3.8/spring-web-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-beans/5.3.8/spring-beans-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-webmvc/5.3.8/spring-webmvc-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-context/5.3.8/spring-context-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-expression/5.3.8/spring-expression-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-consul-discovery/3.0.3/spring-cloud-starter-consul-discovery-3.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-consul/3.0.3/spring-cloud-starter-consul-3.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-consul-core/3.0.3/spring-cloud-consul-core-3.0.3.jar:/Users/wangxinxin/.m2/repository/com/ecwid/consul/consul-api/1.4.5/consul-api-1.4.5.jar:/Users/wangxinxin/.m2/repository/com/google/code/gson/gson/2.8.7/gson-2.8.7.jar:/Users/wangxinxin/.m2/repository/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar:/Users/wangxinxin/.m2/repository/commons-codec/commons-codec/1.15/commons-codec-1.15.jar:/Users/wangxinxin/.m2/repository/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-consul-discovery/3.0.3/spring-cloud-consul-discovery-3.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-loadbalancer/3.0.3/spring-cloud-starter-loadbalancer-3.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-loadbalancer/3.0.3/spring-cloud-loadbalancer-3.0.3.jar:/Users/wangxinxin/.m2/repository/io/projectreactor/addons/reactor-extra/3.4.3/reactor-extra-3.4.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-cache/2.5.2/spring-boot-starter-cache-2.5.2.jar:/Users/wangxinxin/.m2/repository/com/stoyanr/evictor/1.0.0/evictor-1.0.0.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-actuator/2.5.2/spring-boot-starter-actuator-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-actuator-autoconfigure/2.5.2/spring-boot-actuator-autoconfigure-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-actuator/2.5.2/spring-boot-actuator-2.5.2.jar:/Users/wangxinxin/.m2/repository/io/micrometer/micrometer-core/1.7.1/micrometer-core-1.7.1.jar:/Users/wangxinxin/.m2/repository/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.jar:/Users/wangxinxin/.m2/repository/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-stream-rocketmq/0.9.0.RELEASE/spring-cloud-starter-stream-rocketmq-0.9.0.RELEASE.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-stream-binder-rocketmq/0.9.0.RELEASE/spring-cloud-stream-binder-rocketmq-0.9.0.RELEASE.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-stream/3.1.3/spring-cloud-stream-3.1.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/integration/spring-integration-jmx/5.5.1/spring-integration-jmx-5.5.1.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-function-context/3.1.3/spring-cloud-function-context-3.1.3.jar:/Users/wangxinxin/.m2/repository/net/jodah/typetools/0.6.2/typetools-0.6.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-function-core/3.1.3/spring-cloud-function-core-3.1.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-bus-rocketmq/0.9.0.RELEASE/spring-cloud-starter-bus-rocketmq-0.9.0.RELEASE.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-bus/3.0.3/spring-cloud-bus-3.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/integration/spring-integration-core/5.5.1/spring-integration-core-5.5.1.jar:/Users/wangxinxin/.m2/repository/org/slf4j/slf4j-api/1.7.31/slf4j-api-1.7.31.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-core/5.3.8/spring-core-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-jcl/5.3.8/spring-jcl-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-config/3.0.4/spring-cloud-starter-config-3.0.4.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter/3.0.3/spring-cloud-starter-3.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-context/3.0.3/spring-cloud-context-3.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/security/spring-security-crypto/5.5.1/spring-security-crypto-5.5.1.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-commons/3.0.3/spring-cloud-commons-3.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/security/spring-security-rsa/1.0.10.RELEASE/spring-security-rsa-1.0.10.RELEASE.jar:/Users/wangxinxin/.m2/repository/org/bouncycastle/bcpkix-jdk15on/1.68/bcpkix-jdk15on-1.68.jar:/Users/wangxinxin/.m2/repository/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-config-client/3.0.4/spring-cloud-config-client-3.0.4.jar:/Users/wangxinxin/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.12.3/jackson-annotations-2.12.3.jar:/Users/wangxinxin/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.12.3/jackson-databind-2.12.3.jar:/Users/wangxinxin/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.12.3/jackson-core-2.12.3.jar:/Users/wangxinxin/.m2/repository/com/google/guava/guava/20.0/guava-20.0.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-data-redis/2.5.2/spring-boot-starter-data-redis-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/data/spring-data-redis/2.5.2/spring-data-redis-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/data/spring-data-keyvalue/2.5.2/spring-data-keyvalue-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/data/spring-data-commons/2.5.2/spring-data-commons-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-tx/5.3.8/spring-tx-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-oxm/5.3.8/spring-oxm-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-context-support/5.3.8/spring-context-support-5.3.8.jar:/Users/wangxinxin/.m2/repository/io/lettuce/lettuce-core/6.1.3.RELEASE/lettuce-core-6.1.3.RELEASE.jar:/Users/wangxinxin/.m2/repository/io/netty/netty-common/4.1.65.Final/netty-common-4.1.65.Final.jar:/Users/wangxinxin/.m2/repository/io/netty/netty-handler/4.1.65.Final/netty-handler-4.1.65.Final.jar:/Users/wangxinxin/.m2/repository/io/netty/netty-resolver/4.1.65.Final/netty-resolver-4.1.65.Final.jar:/Users/wangxinxin/.m2/repository/io/netty/netty-buffer/4.1.65.Final/netty-buffer-4.1.65.Final.jar:/Users/wangxinxin/.m2/repository/io/netty/netty-codec/4.1.65.Final/netty-codec-4.1.65.Final.jar:/Users/wangxinxin/.m2/repository/io/netty/netty-transport/4.1.65.Final/netty-transport-4.1.65.Final.jar:/Users/wangxinxin/.m2/repository/io/projectreactor/reactor-core/3.4.7/reactor-core-3.4.7.jar:/Users/wangxinxin/.m2/repository/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/retry/spring-retry/1.3.1/spring-retry-1.3.1.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-aop/2.5.2/spring-boot-starter-aop-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-aop/5.3.8/spring-aop-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/aspectj/aspectjweaver/1.9.6/aspectjweaver-1.9.6.jar:/Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-spring-boot-starter/2.0.3/rocketmq-spring-boot-starter-2.0.3.jar:/Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-spring-boot/2.0.3/rocketmq-spring-boot-2.0.3.jar:/Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-client/4.5.1/rocketmq-client-4.5.1.jar:/Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-common/4.5.1/rocketmq-common-4.5.1.jar:/Users/wangxinxin/.m2/repository/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar:/Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-acl/4.5.1/rocketmq-acl-4.5.1.jar:/Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-remoting/4.5.1/rocketmq-remoting-4.5.1.jar:/Users/wangxinxin/.m2/repository/io/netty/netty-all/4.1.65.Final/netty-all-4.1.65.Final.jar:/Users/wangxinxin/.m2/repository/io/netty/netty-tcnative-boringssl-static/2.0.40.Final/netty-tcnative-boringssl-static-2.0.40.Final.jar:/Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-logging/4.5.1/rocketmq-logging-4.5.1.jar:/Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-srvutil/4.5.1/rocketmq-srvutil-4.5.1.jar:/Users/wangxinxin/.m2/repository/commons-cli/commons-cli/1.2/commons-cli-1.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-validation/2.5.2/spring-boot-starter-validation-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/hibernate/validator/hibernate-validator/6.2.0.Final/hibernate-validator-6.2.0.Final.jar:/Users/wangxinxin/.m2/repository/jakarta/validation/jakarta.validation-api/2.0.2/jakarta.validation-api-2.0.2.jar:/Users/wangxinxin/.m2/repository/org/jboss/logging/jboss-logging/3.4.2.Final/jboss-logging-3.4.2.Final.jar:/Users/wangxinxin/.m2/repository/com/fasterxml/classmate/1.5.1/classmate-1.5.1.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-websocket/2.5.2/spring-boot-starter-websocket-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-messaging/5.3.8/spring-messaging-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-websocket/5.3.8/spring-websocket-5.3.8.jar:/Users/wangxinxin/.m2/repository/com/sns/fis/increment-full-msg-common/1.7.9-SNAPSHOT/increment-full-msg-common-1.7.9-SNAPSHOT.jar:/Users/wangxinxin/.m2/repository/com/alibaba/fastjson/1.2.70/fastjson-1.2.70.jar:/Users/wangxinxin/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar:/Users/wangxinxin/.m2/repository/org/springframework/experimental/spring-native/0.10.1/spring-native-0.10.1.jar:/Users/wangxinxin/Desktop/code/IR/snapshot-56-service/target/snapshot-56-service-0.0.1-SNAPSHOT.jar -H:Name=snapshot-56-service [snapshot-56-service:58152] classlist: 6,031.44 ms, 3.00 GB Warning: class initialization of class org.apache.commons.logging.LogAdapter$Log4jLog failed with exception java.lang.NoClassDefFoundError: org/apache/logging/log4j/LogManager. This class will be initialized at run time because option --allow-incomplete-classpath is used for image building. Use the option --initialize-at-run-time=org.apache.commons.logging.LogAdapter$Log4jLog to explicitly request delayed initialization of this class. SLF4J: Failed to load class "org.slf4j.impl.StaticMDCBinder". SLF4J: Defaulting to no-operation MDCAdapter implementation. SLF4J: See http://www.slf4j.org/codes.html#no_static_mdc_binder for further details. SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". SLF4J: Defaulting to no-operation (NOP) logger implementation SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details. Warning: class initialization of class org.springframework.boot.logging.logback.LogbackLoggingSystem failed with exception java.lang.NoClassDefFoundError: ch/qos/logback/core/Context. This class will be initialized at run time because option --allow-incomplete-classpath is used for image building. Use the option --initialize-at-run-time=org.springframework.boot.logging.logback.LogbackLoggingSystem to explicitly request delayed initialization of this class. [snapshot-56-service:58152] (cap): 4,251.88 ms, 3.00 GB WARNING: Method com.sun.management.OperatingSystemMXBean.getCpuLoad() not found. WARNING: Could not register org.springframework.boot.autoconfigure.mail.MailSenderValidatorAutoConfiguration: allDeclaredConstructors for reflection. Reason: java.lang.NoClassDefFoundError: javax/mail/MessagingException. WARNING: Could not register org.springframework.boot.autoconfigure.mail.MailSenderValidatorAutoConfiguration: allDeclaredMethods for reflection. Reason: java.lang.NoClassDefFoundError: javax/mail/MessagingException. WARNING: Could not register org.springframework.boot.autoconfigure.mail.MailSenderValidatorAutoConfiguration: allDeclaredFields for reflection. Reason: java.lang.NoClassDefFoundError: javax/mail/MessagingException. WARNING: Could not register org.springframework.data.web.config.HateoasAwareSpringDataWebConfiguration: allDeclaredConstructors for reflection. Reason: java.lang.NoClassDefFoundError: org/springframework/hateoas/server/mvc/UriComponentsContributor. WARNING: Could not register org.springframework.data.web.config.HateoasAwareSpringDataWebConfiguration: allDeclaredMethods for reflection. Reason: java.lang.NoClassDefFoundError: org/springframework/hateoas/server/mvc/UriComponentsContributor. WARNING: Could not register org.springframework.data.web.config.HateoasAwareSpringDataWebConfiguration: allDeclaredFields for reflection. Reason: java.lang.NoClassDefFoundError: org/springframework/hateoas/server/mvc/UriComponentsContributor. WARNING: Could not register org.springframework.integration.json.JsonPathUtils: allPublicMethods for reflection. Reason: java.lang.NoClassDefFoundError: [Lcom/jayway/jsonpath/Predicate;. [snapshot-56-service:58152] setup: 6,304.70 ms, 3.00 GB WARNING: Could not register reflection metadata for org.springframework.boot.actuate.web.mappings.reactive.RequestMappingConditionsDescription. Reason: java.lang.NoClassDefFoundError: org/springframework/web/reactive/result/method/RequestMappingInfo. WARNING: Could not register reflection metadata for org.springframework.data.web.PagedResourcesAssemblerArgumentResolver. Reason: java.lang.NoClassDefFoundError: org/springframework/hateoas/server/mvc/UriComponentsContributor. WARNING: Could not register reflection metadata for org.springframework.boot.autoconfigure.cache.HazelcastCacheConfiguration. Reason: java.lang.NoClassDefFoundError: com/hazelcast/core/HazelcastInstance. WARNING: Could not register reflection metadata for org.springframework.data.web.config.HateoasAwareSpringDataWebConfiguration. Reason: java.lang.NoClassDefFoundError: org/springframework/hateoas/server/mvc/UriComponentsContributor. WARNING: Could not register reflection metadata for org.springframework.boot.autoconfigure.mail.MailSenderValidatorAutoConfiguration. Reason: java.lang.NoClassDefFoundError: javax/mail/MessagingException. WARNING: Could not register reflection metadata for org.springframework.boot.autoconfigure.data.rest.RepositoryRestMvcAutoConfiguration. Reason: java.lang.NoClassDefFoundError: org/springframework/data/rest/webmvc/config/RepositoryRestConfigurer. WARNING: Could not register reflection metadata for org.springframework.web.multipart.commons.CommonsMultipartResolver. Reason: java.lang.NoClassDefFoundError: org/apache/commons/fileupload/FileItemFactory. WARNING: Could not register reflection metadata for org.springframework.integration.json.JsonPathUtils. Reason: java.lang.NoClassDefFoundError: [Lcom/jayway/jsonpath/Predicate;. WARNING: Could not register reflection metadata for org.springframework.boot.autoconfigure.cache.JCacheCacheConfiguration. Reason: java.lang.NoClassDefFoundError: javax/cache/CacheManager. WARNING: Could not register reflection metadata for org.springframework.boot.autoconfigure.sql.init.R2dbcInitializationConfiguration. Reason: java.lang.NoClassDefFoundError: io/r2dbc/spi/ConnectionFactory. WARNING: Could not register reflection metadata for org.springframework.boot.actuate.autoconfigure.security.servlet.ManagementWebSecurityAutoConfiguration. Reason: java.lang.NoClassDefFoundError: org/springframework/security/config/annotation/web/builders/HttpSecurity. WARNING: Could not register reflection metadata for org.springframework.boot.autoconfigure.cache.EhCacheCacheConfiguration. Reason: java.lang.NoClassDefFoundError: net/sf/ehcache/CacheManager. WARNING: Could not register reflection metadata for org.springframework.boot.autoconfigure.data.redis.JedisConnectionConfiguration. Reason: java.lang.NoClassDefFoundError: org/apache/commons/pool2/impl/GenericObjectPoolConfig. WARNING: Could not register reflection metadata for org.springframework.cache.caffeine.CaffeineCacheManager. Reason: java.lang.NoClassDefFoundError: com/github/benmanes/caffeine/cache/Cache. WARNING: Could not register reflection metadata for org.springframework.boot.autoconfigure.data.neo4j.Neo4jDataAutoConfiguration. Reason: java.lang.NoClassDefFoundError: org/neo4j/driver/Driver. WARNING: Could not register reflection metadata for org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration. Reason: java.lang.NoClassDefFoundError: org/springframework/web/reactive/function/client/ExchangeFilterFunction. WARNING: Could not register reflection metadata for org.springframework.boot.autoconfigure.cache.InfinispanCacheConfiguration. Reason: java.lang.NoClassDefFoundError: org/infinispan/manager/EmbeddedCacheManager. WARNING: Could not register reflection metadata for org.springframework.cache.jcache.JCacheCacheManager. Reason: java.lang.NoClassDefFoundError: Ljavax/cache/CacheManager;. WARNING: Could not register reflection metadata for org.springframework.boot.autoconfigure.cache.CaffeineCacheConfiguration. Reason: java.lang.NoClassDefFoundError: com/github/benmanes/caffeine/cache/CaffeineSpec. WARNING: Could not register reflection metadata for org.springframework.mail.javamail.JavaMailSender. Reason: java.lang.NoClassDefFoundError: javax/mail/internet/MimeMessage. WARNING: Could not register reflection metadata for org.springframework.data.querydsl.binding.QuerydslBindingsFactory. Reason: java.lang.NoClassDefFoundError: com/querydsl/core/types/EntityPath. WARNING: Could not register reflection metadata for org.springframework.boot.actuate.web.mappings.reactive.RequestMappingConditionsDescription$MediaTypeExpressionDescription. Reason: java.lang.NoClassDefFoundError: org/springframework/web/reactive/result/condition/MediaTypeExpression. WARNING: Could not register reflection metadata for org.springframework.boot.autoconfigure.cache.CouchbaseCacheConfiguration. Reason: java.lang.NoClassDefFoundError: org/springframework/data/couchbase/CouchbaseClientFactory. WARNING: Could not register reflection metadata for org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration. Reason: java.lang.NoClassDefFoundError: org/springframework/security/authentication/DefaultAuthenticationEventPublisher. WARNING: Could not register reflection metadata for org.springframework.cloud.client.loadbalancer.reactive.ReactorLoadBalancerClientAutoConfiguration. Reason: java.lang.NoClassDefFoundError: org/springframework/web/reactive/function/client/ExchangeFilterFunction. WARNING: Could not register reflection metadata for org.springframework.boot.actuate.autoconfigure.cloudfoundry.servlet.CloudFoundryActuatorAutoConfiguration. Reason: java.lang.NoClassDefFoundError: org/springframework/security/config/annotation/web/configuration/WebSecurityCustomizer. WARNING: Could not register reflection metadata for org.springframework.cache.ehcache.EhCacheCacheManager. Reason: java.lang.NoClassDefFoundError: Lnet/sf/ehcache/CacheManager;. WARNING: Could not register reflection metadata for org.springframework.mail.javamail.JavaMailSenderImpl. Reason: java.lang.NoClassDefFoundError: javax/mail/AuthenticationFailedException. WARNING: Could not register reflection metadata for org.springframework.boot.autoconfigure.jsonb.JsonbAutoConfiguration. Reason: java.lang.NoClassDefFoundError: javax/json/bind/Jsonb. Warning: class initialization of class io.netty.handler.ssl.ConscryptAlpnSslEngine failed with exception java.lang.NoClassDefFoundError: org/conscrypt/BufferAllocator. This class will be initialized at run time because option --allow-incomplete-classpath is used for image building. Use the option --initialize-at-run-time=io.netty.handler.ssl.ConscryptAlpnSslEngine to explicitly request delayed initialization of this class. Warning: class initialization of class io.netty.util.internal.logging.Slf4JLoggerFactory failed with exception java.lang.NoClassDefFoundError: Could not initialize class io.netty.util.internal.logging.Slf4JLoggerFactory. This class will be initialized at run time because option --allow-incomplete-classpath is used for image building. Use the option --initialize-at-run-time=io.netty.util.internal.logging.Slf4JLoggerFactory to explicitly request delayed initialization of this class. Warning: class initialization of class io.netty.util.internal.logging.Log4JLogger failed with exception java.lang.NoClassDefFoundError: org/apache/log4j/Priority. This class will be initialized at run time because option --allow-incomplete-classpath is used for image building. Use the option --initialize-at-run-time=io.netty.util.internal.logging.Log4JLogger to explicitly request delayed initialization of this class. WARNING: Could not register reflection metadata for org.springframework.boot.actuate.web.mappings.reactive.RequestMappingConditionsDescription. Reason: java.lang.NoClassDefFoundError: org/springframework/web/reactive/result/method/RequestMappingInfo. WARNING: Could not register reflection metadata for org.springframework.data.web.PagedResourcesAssemblerArgumentResolver. Reason: java.lang.NoClassDefFoundError: org/springframework/hateoas/server/mvc/UriComponentsContributor. WARNING: Could not register reflection metadata for org.springframework.boot.autoconfigure.cache.HazelcastCacheConfiguration. Reason: java.lang.NoClassDefFoundError: com/hazelcast/core/HazelcastInstance. WARNING: Could not register reflection metadata for org.springframework.data.web.config.HateoasAwareSpringDataWebConfiguration. Reason: java.lang.NoClassDefFoundError: org/springframework/hateoas/server/mvc/UriComponentsContributor. WARNING: Could not register reflection metadata for org.springframework.boot.autoconfigure.mail.MailSenderValidatorAutoConfiguration. Reason: java.lang.NoClassDefFoundError: javax/mail/MessagingException. WARNING: Could not register reflection metadata for org.springframework.boot.autoconfigure.data.rest.RepositoryRestMvcAutoConfiguration. Reason: java.lang.NoClassDefFoundError: org/springframework/data/rest/webmvc/config/RepositoryRestConfigurer. WARNING: Could not register reflection metadata for org.springframework.web.multipart.commons.CommonsMultipartResolver. Reason: java.lang.NoClassDefFoundError: org/apache/commons/fileupload/FileItemFactory. WARNING: Could not register reflection metadata for org.springframework.integration.json.JsonPathUtils. Reason: java.lang.NoClassDefFoundError: [Lcom/jayway/jsonpath/Predicate;. WARNING: Could not register reflection metadata for org.springframework.boot.autoconfigure.cache.JCacheCacheConfiguration. Reason: java.lang.NoClassDefFoundError: javax/cache/CacheManager. WARNING: Could not register reflection metadata for org.springframework.boot.autoconfigure.sql.init.R2dbcInitializationConfiguration. Reason: java.lang.NoClassDefFoundError: io/r2dbc/spi/ConnectionFactory. WARNING: Could not register reflection metadata for org.springframework.boot.actuate.autoconfigure.security.servlet.ManagementWebSecurityAutoConfiguration. Reason: java.lang.NoClassDefFoundError: org/springframework/security/config/annotation/web/builders/HttpSecurity. WARNING: Could not register reflection metadata for org.springframework.boot.autoconfigure.cache.EhCacheCacheConfiguration. Reason: java.lang.NoClassDefFoundError: net/sf/ehcache/CacheManager. WARNING: Could not register reflection metadata for org.springframework.boot.autoconfigure.data.redis.JedisConnectionConfiguration. Reason: java.lang.NoClassDefFoundError: org/apache/commons/pool2/impl/GenericObjectPoolConfig. WARNING: Could not register reflection metadata for org.springframework.cache.caffeine.CaffeineCacheManager. Reason: java.lang.NoClassDefFoundError: com/github/benmanes/caffeine/cache/Cache. WARNING: Could not register reflection metadata for org.springframework.boot.autoconfigure.data.neo4j.Neo4jDataAutoConfiguration. Reason: java.lang.NoClassDefFoundError: org/neo4j/driver/Driver. WARNING: Could not register reflection metadata for org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration. Reason: java.lang.NoClassDefFoundError: org/springframework/web/reactive/function/client/ExchangeFilterFunction. WARNING: Could not register reflection metadata for org.springframework.boot.autoconfigure.cache.InfinispanCacheConfiguration. Reason: java.lang.NoClassDefFoundError: org/infinispan/manager/EmbeddedCacheManager. WARNING: Could not register reflection metadata for org.springframework.cache.jcache.JCacheCacheManager. Reason: java.lang.NoClassDefFoundError: Ljavax/cache/CacheManager;. WARNING: Could not register reflection metadata for org.springframework.boot.autoconfigure.cache.CaffeineCacheConfiguration. Reason: java.lang.NoClassDefFoundError: com/github/benmanes/caffeine/cache/CaffeineSpec. WARNING: Could not register reflection metadata for org.springframework.mail.javamail.JavaMailSender. Reason: java.lang.NoClassDefFoundError: javax/mail/internet/MimeMessage. WARNING: Could not register reflection metadata for org.springframework.data.querydsl.binding.QuerydslBindingsFactory. Reason: java.lang.NoClassDefFoundError: com/querydsl/core/types/EntityPath. WARNING: Could not register reflection metadata for org.springframework.boot.actuate.web.mappings.reactive.RequestMappingConditionsDescription$MediaTypeExpressionDescription. Reason: java.lang.NoClassDefFoundError: org/springframework/web/reactive/result/condition/MediaTypeExpression. WARNING: Could not register reflection metadata for org.springframework.boot.autoconfigure.cache.CouchbaseCacheConfiguration. Reason: java.lang.NoClassDefFoundError: org/springframework/data/couchbase/CouchbaseClientFactory. WARNING: Could not register reflection metadata for org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration. Reason: java.lang.NoClassDefFoundError: org/springframework/security/authentication/DefaultAuthenticationEventPublisher. WARNING: Could not register reflection metadata for org.springframework.cloud.client.loadbalancer.reactive.ReactorLoadBalancerClientAutoConfiguration. Reason: java.lang.NoClassDefFoundError: org/springframework/web/reactive/function/client/ExchangeFilterFunction. WARNING: Could not register reflection metadata for org.springframework.boot.actuate.autoconfigure.cloudfoundry.servlet.CloudFoundryActuatorAutoConfiguration. Reason: java.lang.NoClassDefFoundError: org/springframework/security/config/annotation/web/configuration/WebSecurityCustomizer. WARNING: Could not register reflection metadata for org.springframework.cache.ehcache.EhCacheCacheManager. Reason: java.lang.NoClassDefFoundError: Lnet/sf/ehcache/CacheManager;. WARNING: Could not register reflection metadata for org.springframework.mail.javamail.JavaMailSenderImpl. Reason: java.lang.NoClassDefFoundError: javax/mail/AuthenticationFailedException. WARNING: Could not register reflection metadata for org.springframework.boot.autoconfigure.jsonb.JsonbAutoConfiguration. Reason: java.lang.NoClassDefFoundError: javax/json/bind/Jsonb. Warning: class initialization of class io.netty.internal.tcnative.SSL failed with exception java.lang.NoClassDefFoundError: Could not initialize class io.netty.internal.tcnative.SSL. This class will be initialized at run time because option --allow-incomplete-classpath is used for image building. Use the option --initialize-at-run-time=io.netty.internal.tcnative.SSL to explicitly request delayed initialization of this class. Warning: class initialization of class io.netty.handler.ssl.JdkNpnApplicationProtocolNegotiator failed with exception java.lang.NoClassDefFoundError: org/eclipse/jetty/npn/NextProtoNego$Provider. This class will be initialized at run time because option --allow-incomplete-classpath is used for image building. Use the option --initialize-at-run-time=io.netty.handler.ssl.JdkNpnApplicationProtocolNegotiator to explicitly request delayed initialization of this class. Warning: class initialization of class io.netty.internal.tcnative.SSLPrivateKeyMethod failed with exception java.lang.NoClassDefFoundError: Could not initialize class io.netty.internal.tcnative.SSLPrivateKeyMethod. This class will be initialized at run time because option --allow-incomplete-classpath is used for image building. Use the option --initialize-at-run-time=io.netty.internal.tcnative.SSLPrivateKeyMethod to explicitly request delayed initialization of this class. Jul 10, 2021 10:10:27 PM io.netty.handler.ssl.BouncyCastleAlpnSslUtils SEVERE: Unable to initialize BouncyCastleAlpnSslUtils. java.lang.ClassNotFoundException: org.bouncycastle.jsse.BCSSLEngine at java.net.URLClassLoader.findClass(URLClassLoader.java:382) at java.lang.ClassLoader.loadClass(ClassLoader.java:418) at java.lang.ClassLoader.loadClass(ClassLoader.java:351) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:264) at io.netty.handler.ssl.BouncyCastleAlpnSslUtils.(BouncyCastleAlpnSslUtils.java:63) at sun.misc.Unsafe.ensureClassInitialized(Native Method) at com.oracle.svm.hosted.classinitialization.ConfigurableClassInitialization.ensureClassInitialized(ConfigurableClassInitialization.java:174) at com.oracle.svm.hosted.classinitialization.ConfigurableClassInitialization.computeInitKindAndMaybeInitializeClass(ConfigurableClassInitialization.java:607) at com.oracle.svm.hosted.classinitialization.ConfigurableClassInitialization.computeInitKindAndMaybeInitializeClass(ConfigurableClassInitialization.java:127) at com.oracle.svm.hosted.classinitialization.ConfigurableClassInitialization.shouldInitializeAtRuntime(ConfigurableClassInitialization.java:155) at com.oracle.svm.hosted.SVMHost.isInitialized(SVMHost.java:291) at com.oracle.graal.pointsto.meta.AnalysisType.isInitialized(AnalysisType.java:788) at org.graalvm.compiler.java.BytecodeParser.maybeEagerlyInitialize(BytecodeParser.java:4430) at org.graalvm.compiler.java.BytecodeParser.genInvokeStatic(BytecodeParser.java:1641) at org.graalvm.compiler.java.BytecodeParser.genInvokeStatic(BytecodeParser.java:1634) at org.graalvm.compiler.java.BytecodeParser.processBytecode(BytecodeParser.java:5406) at org.graalvm.compiler.java.BytecodeParser.iterateBytecodesForBlock(BytecodeParser.java:3436) at org.graalvm.compiler.java.BytecodeParser.processBlock(BytecodeParser.java:3243) at org.graalvm.compiler.java.BytecodeParser.build(BytecodeParser.java:1109) at org.graalvm.compiler.java.BytecodeParser.buildRootMethod(BytecodeParser.java:1003) at org.graalvm.compiler.java.GraphBuilderPhase$Instance.run(GraphBuilderPhase.java:84) at com.oracle.svm.hosted.phases.SharedGraphBuilderPhase.run(SharedGraphBuilderPhase.java:76) at org.graalvm.compiler.phases.Phase.run(Phase.java:49) at org.graalvm.compiler.phases.BasePhase.apply(BasePhase.java:212) at org.graalvm.compiler.phases.Phase.apply(Phase.java:42) at org.graalvm.compiler.phases.Phase.apply(Phase.java:38) at com.oracle.graal.pointsto.flow.MethodTypeFlowBuilder.parse(MethodTypeFlowBuilder.java:223) at com.oracle.graal.pointsto.flow.MethodTypeFlowBuilder.apply(MethodTypeFlowBuilder.java:357) at com.oracle.graal.pointsto.flow.MethodTypeFlow.doParse(MethodTypeFlow.java:313) at com.oracle.graal.pointsto.flow.MethodTypeFlow.ensureParsed(MethodTypeFlow.java:302) at com.oracle.graal.pointsto.flow.MethodTypeFlow.addContext(MethodTypeFlow.java:103) at com.oracle.graal.pointsto.DefaultAnalysisPolicy$DefaultVirtualInvokeTypeFlow.onObservedUpdate(DefaultAnalysisPolicy.java:227) at com.oracle.graal.pointsto.flow.TypeFlow.notifyObservers(TypeFlow.java:470) at com.oracle.graal.pointsto.flow.TypeFlow.update(TypeFlow.java:542) at com.oracle.graal.pointsto.BigBang$2.run(BigBang.java:547) at com.oracle.graal.pointsto.util.CompletionExecutor.lambda$execute$0(CompletionExecutor.java:173) at java.util.concurrent.ForkJoinTask$RunnableExecuteAction.exec(ForkJoinTask.java:1402) at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289) at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056) at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692) at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:175)

To see how the classes got initialized, use --trace-class-initialization=org.bouncycastle.asn1.x9.X9ObjectIdentifiers,org.bouncycastle.asn1.x509.X509ObjectIdentifiers,io.netty.channel.unix.Socket,org.bouncycastle.util.Properties,org.bouncycastle.asn1.oiw.OIWObjectIdentifiers,org.bouncycastle.util.encoders.Hex,org.bouncycastle.jce.provider.BouncyCastleProvider,org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers,org.bouncycastle.util.Strings,io.netty.util.AbstractReferenceCounted [snapshot-56-service:58152] analysis: 141,979.84 ms, 5.48 GB Error: Classes that should be initialized at run time got initialized during image building: org.bouncycastle.asn1.x9.X9ObjectIdentifiers was unintentionally initialized at build time. To see why org.bouncycastle.asn1.x9.X9ObjectIdentifiers got initialized use --trace-class-initialization=org.bouncycastle.asn1.x9.X9ObjectIdentifiers org.bouncycastle.asn1.x509.X509ObjectIdentifiers was unintentionally initialized at build time. To see why org.bouncycastle.asn1.x509.X509ObjectIdentifiers got initialized use --trace-class-initialization=org.bouncycastle.asn1.x509.X509ObjectIdentifiers io.netty.channel.unix.Socket the class was requested to be initialized at run time (from the command line). To see why io.netty.channel.unix.Socket got initialized use --trace-class-initialization=io.netty.channel.unix.Socket org.bouncycastle.util.Properties was unintentionally initialized at build time. To see why org.bouncycastle.util.Properties got initialized use --trace-class-initialization=org.bouncycastle.util.Properties org.bouncycastle.asn1.oiw.OIWObjectIdentifiers was unintentionally initialized at build time. To see why org.bouncycastle.asn1.oiw.OIWObjectIdentifiers got initialized use --trace-class-initialization=org.bouncycastle.asn1.oiw.OIWObjectIdentifiers org.bouncycastle.util.encoders.Hex was unintentionally initialized at build time. To see why org.bouncycastle.util.encoders.Hex got initialized use --trace-class-initialization=org.bouncycastle.util.encoders.Hex org.bouncycastle.jce.provider.BouncyCastleProvider was unintentionally initialized at build time. To see why org.bouncycastle.jce.provider.BouncyCastleProvider got initialized use --trace-class-initialization=org.bouncycastle.jce.provider.BouncyCastleProvider org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers was unintentionally initialized at build time. To see why org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers got initialized use --trace-class-initialization=org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers org.bouncycastle.util.Strings was unintentionally initialized at build time. To see why org.bouncycastle.util.Strings got initialized use --trace-class-initialization=org.bouncycastle.util.Strings io.netty.util.AbstractReferenceCounted the class was requested to be initialized at run time (from the command line). To see why io.netty.util.AbstractReferenceCounted got initialized use --trace-class-initialization=io.netty.util.AbstractReferenceCounted

Error: Use -H:+ReportExceptionStackTraces to print stacktrace of underlying exception Error: Image build request failed with exit status 1 [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 03:02 min [INFO] Finished at: 2021-07-10T22:10:38+08:00 [INFO] ------------------------------------------------------------------------ [WARNING] The requested profile "native" could not be activated because it does not exist. [ERROR] Failed to execute goal org.graalvm.buildtools:native-maven-plugin:0.9.0:build (build-native) on project snapshot-56-service: Execution of /Users/wangxinxin/.sdkman/candidates/java/current/bin/native-image -cp /Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-web/2.5.2/spring-boot-starter-web-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter/2.5.2/spring-boot-starter-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot/2.5.2/spring-boot-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/2.5.2/spring-boot-autoconfigure-2.5.2.jar:/Users/wangxinxin/.m2/repository/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.jar:/Users/wangxinxin/.m2/repository/org/yaml/snakeyaml/1.28/snakeyaml-1.28.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-json/2.5.2/spring-boot-starter-json-2.5.2.jar:/Users/wangxinxin/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.12.3/jackson-datatype-jdk8-2.12.3.jar:/Users/wangxinxin/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.12.3/jackson-datatype-jsr310-2.12.3.jar:/Users/wangxinxin/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.12.3/jackson-module-parameter-names-2.12.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/2.5.2/spring-boot-starter-tomcat-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/9.0.48/tomcat-embed-core-9.0.48.jar:/Users/wangxinxin/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/9.0.48/tomcat-embed-el-9.0.48.jar:/Users/wangxinxin/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.48/tomcat-embed-websocket-9.0.48.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-web/5.3.8/spring-web-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-beans/5.3.8/spring-beans-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-webmvc/5.3.8/spring-webmvc-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-context/5.3.8/spring-context-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-expression/5.3.8/spring-expression-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-consul-discovery/3.0.3/spring-cloud-starter-consul-discovery-3.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-consul/3.0.3/spring-cloud-starter-consul-3.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-consul-core/3.0.3/spring-cloud-consul-core-3.0.3.jar:/Users/wangxinxin/.m2/repository/com/ecwid/consul/consul-api/1.4.5/consul-api-1.4.5.jar:/Users/wangxinxin/.m2/repository/com/google/code/gson/gson/2.8.7/gson-2.8.7.jar:/Users/wangxinxin/.m2/repository/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar:/Users/wangxinxin/.m2/repository/commons-codec/commons-codec/1.15/commons-codec-1.15.jar:/Users/wangxinxin/.m2/repository/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-consul-discovery/3.0.3/spring-cloud-consul-discovery-3.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-loadbalancer/3.0.3/spring-cloud-starter-loadbalancer-3.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-loadbalancer/3.0.3/spring-cloud-loadbalancer-3.0.3.jar:/Users/wangxinxin/.m2/repository/io/projectreactor/addons/reactor-extra/3.4.3/reactor-extra-3.4.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-cache/2.5.2/spring-boot-starter-cache-2.5.2.jar:/Users/wangxinxin/.m2/repository/com/stoyanr/evictor/1.0.0/evictor-1.0.0.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-actuator/2.5.2/spring-boot-starter-actuator-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-actuator-autoconfigure/2.5.2/spring-boot-actuator-autoconfigure-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-actuator/2.5.2/spring-boot-actuator-2.5.2.jar:/Users/wangxinxin/.m2/repository/io/micrometer/micrometer-core/1.7.1/micrometer-core-1.7.1.jar:/Users/wangxinxin/.m2/repository/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.jar:/Users/wangxinxin/.m2/repository/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-stream-rocketmq/0.9.0.RELEASE/spring-cloud-starter-stream-rocketmq-0.9.0.RELEASE.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-stream-binder-rocketmq/0.9.0.RELEASE/spring-cloud-stream-binder-rocketmq-0.9.0.RELEASE.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-stream/3.1.3/spring-cloud-stream-3.1.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/integration/spring-integration-jmx/5.5.1/spring-integration-jmx-5.5.1.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-function-context/3.1.3/spring-cloud-function-context-3.1.3.jar:/Users/wangxinxin/.m2/repository/net/jodah/typetools/0.6.2/typetools-0.6.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-function-core/3.1.3/spring-cloud-function-core-3.1.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-bus-rocketmq/0.9.0.RELEASE/spring-cloud-starter-bus-rocketmq-0.9.0.RELEASE.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-bus/3.0.3/spring-cloud-bus-3.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/integration/spring-integration-core/5.5.1/spring-integration-core-5.5.1.jar:/Users/wangxinxin/.m2/repository/org/slf4j/slf4j-api/1.7.31/slf4j-api-1.7.31.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-core/5.3.8/spring-core-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-jcl/5.3.8/spring-jcl-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter-config/3.0.4/spring-cloud-starter-config-3.0.4.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-starter/3.0.3/spring-cloud-starter-3.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-context/3.0.3/spring-cloud-context-3.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/security/spring-security-crypto/5.5.1/spring-security-crypto-5.5.1.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-commons/3.0.3/spring-cloud-commons-3.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/security/spring-security-rsa/1.0.10.RELEASE/spring-security-rsa-1.0.10.RELEASE.jar:/Users/wangxinxin/.m2/repository/org/bouncycastle/bcpkix-jdk15on/1.68/bcpkix-jdk15on-1.68.jar:/Users/wangxinxin/.m2/repository/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68.jar:/Users/wangxinxin/.m2/repository/org/springframework/cloud/spring-cloud-config-client/3.0.4/spring-cloud-config-client-3.0.4.jar:/Users/wangxinxin/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.12.3/jackson-annotations-2.12.3.jar:/Users/wangxinxin/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.12.3/jackson-databind-2.12.3.jar:/Users/wangxinxin/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.12.3/jackson-core-2.12.3.jar:/Users/wangxinxin/.m2/repository/com/google/guava/guava/20.0/guava-20.0.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-data-redis/2.5.2/spring-boot-starter-data-redis-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/data/spring-data-redis/2.5.2/spring-data-redis-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/data/spring-data-keyvalue/2.5.2/spring-data-keyvalue-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/data/spring-data-commons/2.5.2/spring-data-commons-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-tx/5.3.8/spring-tx-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-oxm/5.3.8/spring-oxm-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-context-support/5.3.8/spring-context-support-5.3.8.jar:/Users/wangxinxin/.m2/repository/io/lettuce/lettuce-core/6.1.3.RELEASE/lettuce-core-6.1.3.RELEASE.jar:/Users/wangxinxin/.m2/repository/io/netty/netty-common/4.1.65.Final/netty-common-4.1.65.Final.jar:/Users/wangxinxin/.m2/repository/io/netty/netty-handler/4.1.65.Final/netty-handler-4.1.65.Final.jar:/Users/wangxinxin/.m2/repository/io/netty/netty-resolver/4.1.65.Final/netty-resolver-4.1.65.Final.jar:/Users/wangxinxin/.m2/repository/io/netty/netty-buffer/4.1.65.Final/netty-buffer-4.1.65.Final.jar:/Users/wangxinxin/.m2/repository/io/netty/netty-codec/4.1.65.Final/netty-codec-4.1.65.Final.jar:/Users/wangxinxin/.m2/repository/io/netty/netty-transport/4.1.65.Final/netty-transport-4.1.65.Final.jar:/Users/wangxinxin/.m2/repository/io/projectreactor/reactor-core/3.4.7/reactor-core-3.4.7.jar:/Users/wangxinxin/.m2/repository/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar:/Users/wangxinxin/.m2/repository/org/springframework/retry/spring-retry/1.3.1/spring-retry-1.3.1.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-aop/2.5.2/spring-boot-starter-aop-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-aop/5.3.8/spring-aop-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/aspectj/aspectjweaver/1.9.6/aspectjweaver-1.9.6.jar:/Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-spring-boot-starter/2.0.3/rocketmq-spring-boot-starter-2.0.3.jar:/Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-spring-boot/2.0.3/rocketmq-spring-boot-2.0.3.jar:/Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-client/4.5.1/rocketmq-client-4.5.1.jar:/Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-common/4.5.1/rocketmq-common-4.5.1.jar:/Users/wangxinxin/.m2/repository/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar:/Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-acl/4.5.1/rocketmq-acl-4.5.1.jar:/Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-remoting/4.5.1/rocketmq-remoting-4.5.1.jar:/Users/wangxinxin/.m2/repository/io/netty/netty-all/4.1.65.Final/netty-all-4.1.65.Final.jar:/Users/wangxinxin/.m2/repository/io/netty/netty-tcnative-boringssl-static/2.0.40.Final/netty-tcnative-boringssl-static-2.0.40.Final.jar:/Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-logging/4.5.1/rocketmq-logging-4.5.1.jar:/Users/wangxinxin/.m2/repository/org/apache/rocketmq/rocketmq-srvutil/4.5.1/rocketmq-srvutil-4.5.1.jar:/Users/wangxinxin/.m2/repository/commons-cli/commons-cli/1.2/commons-cli-1.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-validation/2.5.2/spring-boot-starter-validation-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/hibernate/validator/hibernate-validator/6.2.0.Final/hibernate-validator-6.2.0.Final.jar:/Users/wangxinxin/.m2/repository/jakarta/validation/jakarta.validation-api/2.0.2/jakarta.validation-api-2.0.2.jar:/Users/wangxinxin/.m2/repository/org/jboss/logging/jboss-logging/3.4.2.Final/jboss-logging-3.4.2.Final.jar:/Users/wangxinxin/.m2/repository/com/fasterxml/classmate/1.5.1/classmate-1.5.1.jar:/Users/wangxinxin/.m2/repository/org/springframework/boot/spring-boot-starter-websocket/2.5.2/spring-boot-starter-websocket-2.5.2.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-messaging/5.3.8/spring-messaging-5.3.8.jar:/Users/wangxinxin/.m2/repository/org/springframework/spring-websocket/5.3.8/spring-websocket-5.3.8.jar:/Users/wangxinxin/.m2/repository/com/sns/fis/increment-full-msg-common/1.7.9-SNAPSHOT/increment-full-msg-common-1.7.9-SNAPSHOT.jar:/Users/wangxinxin/.m2/repository/com/alibaba/fastjson/1.2.70/fastjson-1.2.70.jar:/Users/wangxinxin/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar:/Users/wangxinxin/.m2/repository/org/springframework/experimental/spring-native/0.10.1/spring-native-0.10.1.jar:/Users/wangxinxin/Desktop/code/IR/snapshot-56-service/target/snapshot-56-service-0.0.1-SNAPSHOT.jar -H:Name=snapshot-56-service returned non-zero result -> [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 ✘ wangxinxin@CN0614006847M  ~/Desktop/code/IR/snapshot-56-service   pilot2-prod ±✚ 

ttddyy commented 3 years ago

Seems related to this issue: https://github.com/netty/netty/issues/11369 When you encounter an error, please first research the error message by yourself.

winer632 commented 3 years ago

May I know the roadmap of spring-native? When will these unsupported features be implemented?

sdeleuze commented 3 years ago

Spring Native roadmap is mainly this bug tracker and more will be shared at https://springone.io.

This one should indeed be fixed on Netty side first, it is probably related to Netty default build time initialization strategy, we are working with GraalVM team to solve the root issue. You can follow #927 related issue.