On 09/01/2019 13:21, fai...@bestercapitalmedia.com wrote:
> It does compile some war files but raised an error on some or all of the> war 
> files, with random behavior.

You have a corrupt JAR or conflicting dependencies or similar.

> Caused by: java.lang.IllegalStateException: Unable to complete the scan
> for annotations for web application [/Stage] due to a
> StackOverflowError. Possible root causes include a too low setting for
> -Xss and illegal cyclic inheritance dependencies. The class hierarchy
> being processed was
> [org.bouncycastle.asn1.ASN1EncodableVector->org.bouncycastle.asn1.DEREncodableVector->org.bouncycastle.asn1.ASN1EncodableVector]

That is telling you that:
org.bouncycastle.asn1.ASN1EncodableVector
inherits from
org.bouncycastle.asn1.DEREncodableVector
which inherits from
org.bouncycastle.asn1.ASN1EncodableVector

You cannot have circular inheritance in Java. You need to look at the
JAR(s) in your web application that provide those classes.

Mark

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to