Possible root causes include a too low setting for -Xss and illegal cyclic inheritance dependencies

前端 未结 4 1089
梦如初夏
梦如初夏 2021-02-05 18:54

My app is quit big and using many jars and tools. Platform - windows 2008 server, Spring , hibernate, Quarts, mysql, tomcat-7.35

When I deploy and start the server first

4条回答
  •  自闭症患者
    2021-02-05 19:32

    In My case iTextpdf JAR(5.06 version) causing problem as it had dependancy on org.bouncyCastle.*.jar and it was creating cyclic dependancy.

    After updating it to 5.5.6 version, worked perfectly. If you are adding maven dependancy , clean and update maven project.

    
                com.itextpdf
                itextpdf
                5.5.6
    
    

提交回复
热议问题