java itext包使用异常问题

java itext包使用异常问题

itext使用时出现 java.lang.NoClassDefFoundError: org/bouncycastle/asn1/ASN1Primitive 异常 需要在pom中引入

<dependency>
    <groupid>org.bouncycastle</groupid>
    <artifactid>bcprov-jdk15on</artifactid>
    <version>1.52</version>
</dependency>

然后又出现 java.lang.SecurityException: class "org.bouncycastle.asn1.ASN1Primitive"'s signer information does not match signer information of other classes in the same package 这个异常,是因为引入的bcprov包冲突了 查了下是因为下面这个包引入了jdk14版本的,需要excluse掉

<dependency>
    <groupid>pdfbox</groupid>
    <artifactid>pdfbox</artifactid>
    <version>0.7.3</version>
    <scope>test</scope>
    <exclusd <="" dependency=""></exclusd></dependency>


你可能感兴趣的:(java itext包使用异常问题)