iText/BouncyCastle ClassNotFound org.bouncycastle.asn1.DEREncodable and org.bouncycastle.tsp.TimeStampTokenInfo

后端 未结 8 718
天命终不由人
天命终不由人 2020-11-29 06:52

I\'m trying to use iText Java. When you run the example \"how to sign\" the following error occurs:

Caused by: java.lang.ClassNotFoundException: org.bouncyca         


        
8条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-29 07:19

    With itextpdf version 5.5.4 org.bouncycastle dependencies are marked as true. This means you MUST include those dependencies in your own pom, or you can run into classnotfound exceptions.

    
        com.itextpdf
        itextpdf
        5.5.4
    
    
    
    
        org.bouncycastle
        bcprov-jdk15on
        1.49
    
    
        org.bouncycastle
        bcpkix-jdk15on
        1.49
    
    

提交回复
热议问题