XML-BEANS编译架构:不兼容的次要版本 - 期望高达23,得到24

问题描述 投票:0回答:1

使用一些库文件将java版本从8升级到11后,我遇到了问题。

我试图检查xmlbean版本,发现它是xmlbeans-2.6.0.jar

Caused by: java.lang.RuntimeException: Could not instantiate SchemaTypeSystemImpl (java.lang.reflect.InvocationTargetException): is the version of xbean.jar correct?
        at schemaorg_apache_xmlbeans.system.sBB5A8E63226683B652C1BA5AF3C921F5.TypeSystemHolder.loadTypeSystem(Unknown Source)
        at schemaorg_apache_xmlbeans.system.sBB5A8E63226683B652C1BA5AF3C921F5.TypeSystemHolder.<clinit>(Unknown Source)
        ... 60 more
Caused by: java.lang.reflect.InvocationTargetException
        at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:490)
        ... 62 more
Caused by: org.apache.xmlbeans.SchemaTypeLoaderException: XML-BEANS compiled schema: Incompatible minor version - expecting up to 23, got 24 (schemaorg_apache_xmlbeans.system.sBB5A8E63226683B652C1BA5AF3C921F5.index) - code 3
        at org.apache.xmlbeans.impl.schema.SchemaTypeSystemImpl$XsbReader.<init>(SchemaTypeSystemImpl.java:1522)
        at org.apache.xmlbeans.impl.schema.SchemaTypeSystemImpl.initFromHeader(SchemaTypeSystemImpl.java:260)
        at org.apache.xmlbeans.impl.schema.SchemaTypeSystemImpl.<init>(SchemaTypeSystemImpl.java:183)
        ... 66 more
java java-11
1个回答
0
投票

最后,我自己找到了。有两个与不同版本相关的xmlbeans jar文件。我删除了旧版本并且它有效。

© www.soinside.com 2019 - 2024. All rights reserved.