谢谢 Stéphane - 你问题末尾的编辑帮助我“解决”了同样的问题。对于其他也遇到此问题的人-这是一个扩展的答案。这就是你需要在你的 pom 中“修复”东西(直到 Eclipse 正确修复东西):
<!-- See https://stackoverflow.com/q/45870753 -->
<dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>eclipselink</artifactId>
<version>2.7.0</version>
<exclusions>
<exclusion>
<groupId>org.eclipse.persistence</groupId>
<artifactId>javax.persistence</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>javax.persistence</artifactId>
<version>2.1.1</version>
</dependency>
这会引入eclipselink
但会排除javax.persistence
它尝试引入的依赖项,并将其替换为javax.persistence
没有签名问题的早期版本。
旁白:在原始问题中显示的 pom 片段中,javax.persistence
version被显式拉入,尽管它已经是.2.2.0
eclipselink
解释
摘要 -eclipselink
工件取决于javax.persistence
并且都包含包中的类javax.persistence
。但是,javax.persistence
罐子已签名,而罐子未签名eclipselink
。javax.persistence
因此,当从 jar 中的包中加载类时,Java 运行时会抱怨它缺少签名与已经从jareclipselink
中的同一包中加载的类不匹配。javax.persistence
java.util.concurrent.ConcurrentHashMap.putIfAbsent(K, V)
详细信息 - 如果我在条件中放置一个断点,"javax.persistence".equals(arg0)
那么我会看到它javax.persistence
映射到以下CodeSource
值:
(file:/Users/georgehawkins/.m2/repository/org/eclipse/persistence/javax.persistence/2.2.0/javax.persistence-2.2.0.jar [
[
Version: V3
Subject: CN="Eclipse Foundation, Inc.", OU=IT, O="Eclipse Foundation, Inc.", L=Ottawa, ST=Ontario, C=CA
Signature Algorithm: SHA256withRSA, OID = 1.2.840.113549.1.1.11
...
即javax.persistence-2.2.0.jar
由 Eclipse Foundation 签名并包含包中的类javax.persistence
。当我的应用程序的某些部分(实际上是 Spring 逻辑中的某些内容)尝试加载javax.persistence.EntityManagerFactory
.
java.lang.ClassLoader.checkCerts(String, CodeSource)
如果我然后在该throw new SecurityException
行上放置一个断点,那么当传入的CodeSource
是:
(file:/Users/georgehawkins/.m2/repository/org/eclipse/persistence/eclipselink/2.7.0/eclipselink-2.7.0.jar <no signer certificates>)
即eclipselink-2.7.0.jar
还包含javax.persistence
包中的类,但它是无符号的,因此会发生冲突,导致SecurityException
被抛出。当某些东西(也在 Spring 逻辑中很深)尝试加载时,就会发生这种情况javax.persistence.PersistenceUtil
。
如果我看一下我的输出,mvn dependency:tree
我发现这种不匹配似乎归结于eclipselink
它本身——它本身就是拉动的org.eclipse.persistence:javax.persistence:jar:2.2.0
。即它与其他一些依赖项没有冲突:
[INFO] | \- org.eclipse.persistence:eclipselink:jar:2.7.0:compile
[INFO] | +- org.eclipse.persistence:javax.persistence:jar:2.2.0:compile
[INFO] | +- org.eclipse.persistence:commonj.sdo:jar:2.1.1:compile
[INFO] | +- javax.validation:validation-api:jar:1.1.0.Final:compile
[INFO] | \- org.glassfish:javax.json:jar:1.0.4:compile
我现在在 bugs.eclipse.org 上记录了这个 - 参见 bug 525457。