錯誤提示訊息為:
Error:java: java.lang.ExceptionInInitializerError com.sun.tools.javac.code.TypeTags
如果使用Maven 錯誤訊息是一樣的。
[INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 2.449 s [INFO] Finished at: 2020-02-26T08:34:45-05:00 [INFO] ------------------------------------------------------------------------ [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.7.0:compile (default-compile) on project core-java-annotations: Fatal error compiling: java.lang.ExceptionInInitializerError: com.sun.tools.javac.code.TypeTags -> [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
請問這是什麼原因呢?
這個可能原因是你編譯器的環境使用過高。但是你的依賴
<dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.6.12</version> <scope>provided</scope> </dependency>
過低導致的。
可以解決的方法是將你的編譯 JDK 降到 1.8。
或將 org.projectlombok 升級到最新的版本。
例如我們在 IntelliJ 中,使用 1.8 編譯程式碼,就沒有錯誤。
以上是Java編譯錯誤訊息提示java.lang.ExceptionInInitializer如何解決的詳細內容。更多資訊請關注PHP中文網其他相關文章!