Spring boot + tomcat deployment + illegal cyclic inheritance dependencies IssueJava SecurityException: signer information does not matchHow to deal with cyclic dependencies in Node.jsHow to configure port for a Spring Boot applicationHow to log SQL statements in Spring Boot?Spring boot war deployment issue in Tomcat 7Why does the main Spring Boot application always trigger PMD's HideUtilityClassConstructorCheck?Spring boot security consider case insensitive username check for loginSpring Boot with application managed persistence contextspring boot war with tomcat 9 deploymentTomcat 9 failed on deployment of Spring Boot WARSpring Boot Tomcat deployement not working Tomcat 7
Error when running ((x++)) as root
Why are there five extra turns in tournament Magic?
How can sister protect herself from impulse purchases with a credit card?
How do you cope with rejection?
Divisor Rich and Poor Numbers
How to laser-level close to a surface
Have GoT's showrunners reacted to the poor reception of the final season?
Shortest amud or daf in Shas?
Is it a good idea to teach algorithm courses using pseudocode?
Referring to a character in 3rd person when they have amnesia
How would fantasy dwarves exist, realistically?
How come Arya Stark wasn't hurt by this in Game of Thrones Season 8 Episode 5?
Bookshelves: the intruder
What technology would Dwarves need to forge titanium?
Prints each letter of a string in different colors. C#
Why is Drogon so much better in battle than Rhaegal and Viserion?
Why does the U.S military use mercenaries?
Why does string strummed with finger sound different from the one strummed with pick?
Is it standard to have the first week's pay indefinitely withheld?
Can more than one instance of Bend Luck be applied to the same roll by multiple Wild Magic sorcerers?
Hotel booking: Why is Agoda much cheaper than booking.com?
multicol package causes underfull hbox
Quotient of Three Dimensional Torus by Permutation on Coordinates
In Dutch history two people are referred to as "William III"; are there any more cases where this happens?
Spring boot + tomcat deployment + illegal cyclic inheritance dependencies Issue
Java SecurityException: signer information does not matchHow to deal with cyclic dependencies in Node.jsHow to configure port for a Spring Boot applicationHow to log SQL statements in Spring Boot?Spring boot war deployment issue in Tomcat 7Why does the main Spring Boot application always trigger PMD's HideUtilityClassConstructorCheck?Spring boot security consider case insensitive username check for loginSpring Boot with application managed persistence contextspring boot war with tomcat 9 deploymentTomcat 9 failed on deployment of Spring Boot WARSpring Boot Tomcat deployement not working Tomcat 7
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I have created a spring boot application. When i try to deploy my application on tomcat server, the jetty dependency in pom.xml was causing the issue. I removed Jetty dependency and then tried to deploy. Now, I am getting the below error related to illegal cyclic inheritance dependencies. I am stuck.
Please find the below error and pom.
Can you please suggest how to fix it ?
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.4.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<tomcat.version>9.0</tomcat.version>
<start-class>spring-boot-example.Application</start-class>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
<version>2.0.4.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
<version>2.0.4.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-data</artifactId>
<version>4.1.3.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<version>2.0.4.RELEASE</version>
<scope>test</scope>
</dependency>
<!-- <dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jetty</artifactId>
<version>2.0.4.RELEASE</version>
</dependency> -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-freemarker</artifactId>
<version>2.0.4.RELEASE</version>
</dependency>
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>sqljdbc4</artifactId>
<version>4.0</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-core</artifactId>
<version>9.0.1</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-annotations-api</artifactId>
<version>9.0.10</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
</dependency>
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.3.1</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>11.0.2</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
</dependency>
<dependency>
<groupId>com.nulab-inc</groupId>
<artifactId>zxcvbn</artifactId>
<version>1.2.5</version>
</dependency>
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>2.3.28</version>
</dependency>
<dependency>
<groupId>com.groupdocs</groupId>
<artifactId>groupdocs-signature</artifactId>
<version>18.8</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>com.groupdocs</groupId>
<artifactId>groupdocs-annotation</artifactId>
<version>18.10</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-taglibs</artifactId>
</dependency>
<dependency>
<groupId>org.apache.tika</groupId>
<artifactId>tika-core</artifactId>
<version>1.20</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>GroupDocsJavaAPI</id>
<name>GroupDocs Java API</name>
<url>http://artifact.groupdocs.com/repo/</url>
</repository>
</repositories>
Caused by: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/CDSTApplication]]
at org.apache.catalina.util.LifecycleBase.handleSubClassException(LifecycleBase.java:441)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:198)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1432)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1422)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at org.apache.tomcat.util.threads.InlineExecutorService.execute(InlineExecutorService.java:75)
at java.util.concurrent.AbstractExecutorService.submit(AbstractExecutorService.java:134)
at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:944)
... 21 more
Caused by: java.lang.IllegalStateException: Unable to complete the scan for annotations for web application [/CDSTApplication] 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 [com.aspose.email.internal.E.d->com.aspose.email.internal.E.f->com.aspose.email.internal.E.d]
at org.apache.catalina.startup.ContextConfig.checkHandlesTypes(ContextConfig.java:2143)
at org.apache.catalina.startup.ContextConfig.processAnnotationsStream(ContextConfig.java:2087)
at org.apache.catalina.startup.ContextConfig.processAnnotationsJar(ContextConfig.java:2033)
at org.apache.catalina.startup.ContextConfig.processAnnotationsUrl(ContextConfig.java:2003)
at org.apache.catalina.startup.ContextConfig.processAnnotations(ContextConfig.java:1956)
at org.apache.catalina.startup.ContextConfig.webConfig(ContextConfig.java:1160)
at org.apache.catalina.startup.ContextConfig.configureStart(ContextConfig.java:769)
at org.apache.catalina.startup.ContextConfig.lifecycleEvent(ContextConfig.java:299)
at org.apache.catalina.util.LifecycleBase.fireLifecycleEvent(LifecycleBase.java:123)
at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5007)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
... 27 more
package com.aspose.email.internal.E;
import com.aspose.email.a.b.b;
import com.aspose.email.a.b.c;
import com.aspose.email.a.b.z;
import com.aspose.email.internal.h.j;
public class d extends f
private String b;
private int c;
private int d;
static char[] a;
public d(String paramString)
if (paramString == null)
throw new c("s");
this.b = paramString;
this.c = 0;
this.d = paramString.length();
public void close()
dispose(true);
protected void dispose(boolean paramBoolean)
this.b = null;
super.dispose(paramBoolean);
public int peek()
if (this.b == null)
a();
if (this.c >= this.d)
return -1;
return this.b.charAt(this.c);
public int read()
if (this.b == null)
a();
if (this.c >= this.d)
return -1;
return this.b.charAt(this.c++);
public int read(char[] paramArrayOfChar, int paramInt1, int paramInt2) (paramInt2 < 0))
throw new com.aspose.email.a.b.d();
int i;
if (this.c > this.d - paramInt2)
i = this.d - this.c;
else
i = paramInt2;
j.a(this.b, this.c, paramArrayOfChar, paramInt1, i);
this.c += i;
return i;
public String readLine()
if (this.b == null)
a();
if (this.c >= this.b.length())
return null;
if (a == null)
a = new char[] 'n', 'r' ;
int i = j.a(this.b, a, this.c);
if (i == -1)
return readToEnd();
int j = (this.b.charAt(i) == 'r') && (i + 1 < this.b.length()) && (this.b.charAt(i + 1) == 'n') ? 1 : 0;
String str = j.b(this.b, this.c, i - this.c);
this.c = (i + (j != 0 ? 2 : 1));
return str;
public String readToEnd()
if (this.b == null)
a();
String str = j.b(this.b, this.c, this.d - this.c);
this.c = this.d;
return str;
static void a()
throw new z("StringReader", "Cannot read from a closed StringReader");
package com.aspose.email.internal.E;
import com.aspose.email.internal.a.t;
import com.aspose.email.internal.h.G;
public abstract class f implements com.aspose.email.a.j
public static f uD = new a();
public void close()
dispose(true);
public void dispose()
dispose(true);
protected void dispose(boolean paramBoolean)
if (paramBoolean)
G.a(this);
public int peek()
return -1;
public int read()
return -1;
public int read(char[] paramArrayOfChar, int paramInt1, int paramInt2)
for (int i = 0; i < paramInt2; i++)
int j;
if ((j = read()) == -1)
return i;
paramArrayOfChar[(paramInt1 + i)] = ((char) j);
return i;
public String readLine()
t localt = new t();
int i;
while (((i = read()) != -1) && (i != 10))
if (i == 13)
if (peek() != 10)
break;
read();
break;
localt.w((char) i);
if ((i == -1) && (localt.b() == 0))
return null;
return localt.toString();
public String readToEnd()
t localt = new t();
int i;
while ((i = read()) != -1)
localt.w((char) i);
return localt.toString();
static final class a extends f
public String readLine()
return null;
public String readToEnd()
return com.aspose.email.internal.h.j.a;
spring-boot deployment jackson tomcat9 cyclic-dependency
add a comment |
I have created a spring boot application. When i try to deploy my application on tomcat server, the jetty dependency in pom.xml was causing the issue. I removed Jetty dependency and then tried to deploy. Now, I am getting the below error related to illegal cyclic inheritance dependencies. I am stuck.
Please find the below error and pom.
Can you please suggest how to fix it ?
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.4.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<tomcat.version>9.0</tomcat.version>
<start-class>spring-boot-example.Application</start-class>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
<version>2.0.4.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
<version>2.0.4.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-data</artifactId>
<version>4.1.3.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<version>2.0.4.RELEASE</version>
<scope>test</scope>
</dependency>
<!-- <dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jetty</artifactId>
<version>2.0.4.RELEASE</version>
</dependency> -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-freemarker</artifactId>
<version>2.0.4.RELEASE</version>
</dependency>
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>sqljdbc4</artifactId>
<version>4.0</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-core</artifactId>
<version>9.0.1</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-annotations-api</artifactId>
<version>9.0.10</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
</dependency>
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.3.1</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>11.0.2</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
</dependency>
<dependency>
<groupId>com.nulab-inc</groupId>
<artifactId>zxcvbn</artifactId>
<version>1.2.5</version>
</dependency>
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>2.3.28</version>
</dependency>
<dependency>
<groupId>com.groupdocs</groupId>
<artifactId>groupdocs-signature</artifactId>
<version>18.8</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>com.groupdocs</groupId>
<artifactId>groupdocs-annotation</artifactId>
<version>18.10</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-taglibs</artifactId>
</dependency>
<dependency>
<groupId>org.apache.tika</groupId>
<artifactId>tika-core</artifactId>
<version>1.20</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>GroupDocsJavaAPI</id>
<name>GroupDocs Java API</name>
<url>http://artifact.groupdocs.com/repo/</url>
</repository>
</repositories>
Caused by: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/CDSTApplication]]
at org.apache.catalina.util.LifecycleBase.handleSubClassException(LifecycleBase.java:441)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:198)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1432)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1422)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at org.apache.tomcat.util.threads.InlineExecutorService.execute(InlineExecutorService.java:75)
at java.util.concurrent.AbstractExecutorService.submit(AbstractExecutorService.java:134)
at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:944)
... 21 more
Caused by: java.lang.IllegalStateException: Unable to complete the scan for annotations for web application [/CDSTApplication] 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 [com.aspose.email.internal.E.d->com.aspose.email.internal.E.f->com.aspose.email.internal.E.d]
at org.apache.catalina.startup.ContextConfig.checkHandlesTypes(ContextConfig.java:2143)
at org.apache.catalina.startup.ContextConfig.processAnnotationsStream(ContextConfig.java:2087)
at org.apache.catalina.startup.ContextConfig.processAnnotationsJar(ContextConfig.java:2033)
at org.apache.catalina.startup.ContextConfig.processAnnotationsUrl(ContextConfig.java:2003)
at org.apache.catalina.startup.ContextConfig.processAnnotations(ContextConfig.java:1956)
at org.apache.catalina.startup.ContextConfig.webConfig(ContextConfig.java:1160)
at org.apache.catalina.startup.ContextConfig.configureStart(ContextConfig.java:769)
at org.apache.catalina.startup.ContextConfig.lifecycleEvent(ContextConfig.java:299)
at org.apache.catalina.util.LifecycleBase.fireLifecycleEvent(LifecycleBase.java:123)
at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5007)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
... 27 more
package com.aspose.email.internal.E;
import com.aspose.email.a.b.b;
import com.aspose.email.a.b.c;
import com.aspose.email.a.b.z;
import com.aspose.email.internal.h.j;
public class d extends f
private String b;
private int c;
private int d;
static char[] a;
public d(String paramString)
if (paramString == null)
throw new c("s");
this.b = paramString;
this.c = 0;
this.d = paramString.length();
public void close()
dispose(true);
protected void dispose(boolean paramBoolean)
this.b = null;
super.dispose(paramBoolean);
public int peek()
if (this.b == null)
a();
if (this.c >= this.d)
return -1;
return this.b.charAt(this.c);
public int read()
if (this.b == null)
a();
if (this.c >= this.d)
return -1;
return this.b.charAt(this.c++);
public int read(char[] paramArrayOfChar, int paramInt1, int paramInt2) (paramInt2 < 0))
throw new com.aspose.email.a.b.d();
int i;
if (this.c > this.d - paramInt2)
i = this.d - this.c;
else
i = paramInt2;
j.a(this.b, this.c, paramArrayOfChar, paramInt1, i);
this.c += i;
return i;
public String readLine()
if (this.b == null)
a();
if (this.c >= this.b.length())
return null;
if (a == null)
a = new char[] 'n', 'r' ;
int i = j.a(this.b, a, this.c);
if (i == -1)
return readToEnd();
int j = (this.b.charAt(i) == 'r') && (i + 1 < this.b.length()) && (this.b.charAt(i + 1) == 'n') ? 1 : 0;
String str = j.b(this.b, this.c, i - this.c);
this.c = (i + (j != 0 ? 2 : 1));
return str;
public String readToEnd()
if (this.b == null)
a();
String str = j.b(this.b, this.c, this.d - this.c);
this.c = this.d;
return str;
static void a()
throw new z("StringReader", "Cannot read from a closed StringReader");
package com.aspose.email.internal.E;
import com.aspose.email.internal.a.t;
import com.aspose.email.internal.h.G;
public abstract class f implements com.aspose.email.a.j
public static f uD = new a();
public void close()
dispose(true);
public void dispose()
dispose(true);
protected void dispose(boolean paramBoolean)
if (paramBoolean)
G.a(this);
public int peek()
return -1;
public int read()
return -1;
public int read(char[] paramArrayOfChar, int paramInt1, int paramInt2)
for (int i = 0; i < paramInt2; i++)
int j;
if ((j = read()) == -1)
return i;
paramArrayOfChar[(paramInt1 + i)] = ((char) j);
return i;
public String readLine()
t localt = new t();
int i;
while (((i = read()) != -1) && (i != 10))
if (i == 13)
if (peek() != 10)
break;
read();
break;
localt.w((char) i);
if ((i == -1) && (localt.b() == 0))
return null;
return localt.toString();
public String readToEnd()
t localt = new t();
int i;
while ((i = read()) != -1)
localt.w((char) i);
return localt.toString();
static final class a extends f
public String readLine()
return null;
public String readToEnd()
return com.aspose.email.internal.h.j.a;
spring-boot deployment jackson tomcat9 cyclic-dependency
Possible duplicate of Java SecurityException: signer information does not match
– Michał Ziober
Mar 23 at 18:15
Hi, Thanks for the update . I was able to resolve those dependencies by excluding few jars. Now, I am stuck with another issue related to cyclic dependency. I am unable to resolve it. I have updated the error logs. Can you please advise ?
– Nithin
Mar 23 at 20:18
Could you show these problematic classes:com.aspose.email.internal.E.d
andcom.aspose.email.internal.E.f
?
– Michał Ziober
Mar 23 at 21:38
Hi, I have added those 2 classes below error logs. Can you please check ?
– Nithin
Mar 24 at 11:59
add a comment |
I have created a spring boot application. When i try to deploy my application on tomcat server, the jetty dependency in pom.xml was causing the issue. I removed Jetty dependency and then tried to deploy. Now, I am getting the below error related to illegal cyclic inheritance dependencies. I am stuck.
Please find the below error and pom.
Can you please suggest how to fix it ?
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.4.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<tomcat.version>9.0</tomcat.version>
<start-class>spring-boot-example.Application</start-class>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
<version>2.0.4.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
<version>2.0.4.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-data</artifactId>
<version>4.1.3.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<version>2.0.4.RELEASE</version>
<scope>test</scope>
</dependency>
<!-- <dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jetty</artifactId>
<version>2.0.4.RELEASE</version>
</dependency> -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-freemarker</artifactId>
<version>2.0.4.RELEASE</version>
</dependency>
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>sqljdbc4</artifactId>
<version>4.0</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-core</artifactId>
<version>9.0.1</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-annotations-api</artifactId>
<version>9.0.10</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
</dependency>
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.3.1</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>11.0.2</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
</dependency>
<dependency>
<groupId>com.nulab-inc</groupId>
<artifactId>zxcvbn</artifactId>
<version>1.2.5</version>
</dependency>
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>2.3.28</version>
</dependency>
<dependency>
<groupId>com.groupdocs</groupId>
<artifactId>groupdocs-signature</artifactId>
<version>18.8</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>com.groupdocs</groupId>
<artifactId>groupdocs-annotation</artifactId>
<version>18.10</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-taglibs</artifactId>
</dependency>
<dependency>
<groupId>org.apache.tika</groupId>
<artifactId>tika-core</artifactId>
<version>1.20</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>GroupDocsJavaAPI</id>
<name>GroupDocs Java API</name>
<url>http://artifact.groupdocs.com/repo/</url>
</repository>
</repositories>
Caused by: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/CDSTApplication]]
at org.apache.catalina.util.LifecycleBase.handleSubClassException(LifecycleBase.java:441)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:198)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1432)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1422)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at org.apache.tomcat.util.threads.InlineExecutorService.execute(InlineExecutorService.java:75)
at java.util.concurrent.AbstractExecutorService.submit(AbstractExecutorService.java:134)
at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:944)
... 21 more
Caused by: java.lang.IllegalStateException: Unable to complete the scan for annotations for web application [/CDSTApplication] 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 [com.aspose.email.internal.E.d->com.aspose.email.internal.E.f->com.aspose.email.internal.E.d]
at org.apache.catalina.startup.ContextConfig.checkHandlesTypes(ContextConfig.java:2143)
at org.apache.catalina.startup.ContextConfig.processAnnotationsStream(ContextConfig.java:2087)
at org.apache.catalina.startup.ContextConfig.processAnnotationsJar(ContextConfig.java:2033)
at org.apache.catalina.startup.ContextConfig.processAnnotationsUrl(ContextConfig.java:2003)
at org.apache.catalina.startup.ContextConfig.processAnnotations(ContextConfig.java:1956)
at org.apache.catalina.startup.ContextConfig.webConfig(ContextConfig.java:1160)
at org.apache.catalina.startup.ContextConfig.configureStart(ContextConfig.java:769)
at org.apache.catalina.startup.ContextConfig.lifecycleEvent(ContextConfig.java:299)
at org.apache.catalina.util.LifecycleBase.fireLifecycleEvent(LifecycleBase.java:123)
at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5007)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
... 27 more
package com.aspose.email.internal.E;
import com.aspose.email.a.b.b;
import com.aspose.email.a.b.c;
import com.aspose.email.a.b.z;
import com.aspose.email.internal.h.j;
public class d extends f
private String b;
private int c;
private int d;
static char[] a;
public d(String paramString)
if (paramString == null)
throw new c("s");
this.b = paramString;
this.c = 0;
this.d = paramString.length();
public void close()
dispose(true);
protected void dispose(boolean paramBoolean)
this.b = null;
super.dispose(paramBoolean);
public int peek()
if (this.b == null)
a();
if (this.c >= this.d)
return -1;
return this.b.charAt(this.c);
public int read()
if (this.b == null)
a();
if (this.c >= this.d)
return -1;
return this.b.charAt(this.c++);
public int read(char[] paramArrayOfChar, int paramInt1, int paramInt2) (paramInt2 < 0))
throw new com.aspose.email.a.b.d();
int i;
if (this.c > this.d - paramInt2)
i = this.d - this.c;
else
i = paramInt2;
j.a(this.b, this.c, paramArrayOfChar, paramInt1, i);
this.c += i;
return i;
public String readLine()
if (this.b == null)
a();
if (this.c >= this.b.length())
return null;
if (a == null)
a = new char[] 'n', 'r' ;
int i = j.a(this.b, a, this.c);
if (i == -1)
return readToEnd();
int j = (this.b.charAt(i) == 'r') && (i + 1 < this.b.length()) && (this.b.charAt(i + 1) == 'n') ? 1 : 0;
String str = j.b(this.b, this.c, i - this.c);
this.c = (i + (j != 0 ? 2 : 1));
return str;
public String readToEnd()
if (this.b == null)
a();
String str = j.b(this.b, this.c, this.d - this.c);
this.c = this.d;
return str;
static void a()
throw new z("StringReader", "Cannot read from a closed StringReader");
package com.aspose.email.internal.E;
import com.aspose.email.internal.a.t;
import com.aspose.email.internal.h.G;
public abstract class f implements com.aspose.email.a.j
public static f uD = new a();
public void close()
dispose(true);
public void dispose()
dispose(true);
protected void dispose(boolean paramBoolean)
if (paramBoolean)
G.a(this);
public int peek()
return -1;
public int read()
return -1;
public int read(char[] paramArrayOfChar, int paramInt1, int paramInt2)
for (int i = 0; i < paramInt2; i++)
int j;
if ((j = read()) == -1)
return i;
paramArrayOfChar[(paramInt1 + i)] = ((char) j);
return i;
public String readLine()
t localt = new t();
int i;
while (((i = read()) != -1) && (i != 10))
if (i == 13)
if (peek() != 10)
break;
read();
break;
localt.w((char) i);
if ((i == -1) && (localt.b() == 0))
return null;
return localt.toString();
public String readToEnd()
t localt = new t();
int i;
while ((i = read()) != -1)
localt.w((char) i);
return localt.toString();
static final class a extends f
public String readLine()
return null;
public String readToEnd()
return com.aspose.email.internal.h.j.a;
spring-boot deployment jackson tomcat9 cyclic-dependency
I have created a spring boot application. When i try to deploy my application on tomcat server, the jetty dependency in pom.xml was causing the issue. I removed Jetty dependency and then tried to deploy. Now, I am getting the below error related to illegal cyclic inheritance dependencies. I am stuck.
Please find the below error and pom.
Can you please suggest how to fix it ?
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.4.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<tomcat.version>9.0</tomcat.version>
<start-class>spring-boot-example.Application</start-class>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
<version>2.0.4.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
<version>2.0.4.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-data</artifactId>
<version>4.1.3.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<version>2.0.4.RELEASE</version>
<scope>test</scope>
</dependency>
<!-- <dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jetty</artifactId>
<version>2.0.4.RELEASE</version>
</dependency> -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-freemarker</artifactId>
<version>2.0.4.RELEASE</version>
</dependency>
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>sqljdbc4</artifactId>
<version>4.0</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-core</artifactId>
<version>9.0.1</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-annotations-api</artifactId>
<version>9.0.10</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
</dependency>
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.3.1</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>11.0.2</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
</dependency>
<dependency>
<groupId>com.nulab-inc</groupId>
<artifactId>zxcvbn</artifactId>
<version>1.2.5</version>
</dependency>
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>2.3.28</version>
</dependency>
<dependency>
<groupId>com.groupdocs</groupId>
<artifactId>groupdocs-signature</artifactId>
<version>18.8</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>com.groupdocs</groupId>
<artifactId>groupdocs-annotation</artifactId>
<version>18.10</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-taglibs</artifactId>
</dependency>
<dependency>
<groupId>org.apache.tika</groupId>
<artifactId>tika-core</artifactId>
<version>1.20</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>GroupDocsJavaAPI</id>
<name>GroupDocs Java API</name>
<url>http://artifact.groupdocs.com/repo/</url>
</repository>
</repositories>
Caused by: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/CDSTApplication]]
at org.apache.catalina.util.LifecycleBase.handleSubClassException(LifecycleBase.java:441)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:198)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1432)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1422)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at org.apache.tomcat.util.threads.InlineExecutorService.execute(InlineExecutorService.java:75)
at java.util.concurrent.AbstractExecutorService.submit(AbstractExecutorService.java:134)
at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:944)
... 21 more
Caused by: java.lang.IllegalStateException: Unable to complete the scan for annotations for web application [/CDSTApplication] 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 [com.aspose.email.internal.E.d->com.aspose.email.internal.E.f->com.aspose.email.internal.E.d]
at org.apache.catalina.startup.ContextConfig.checkHandlesTypes(ContextConfig.java:2143)
at org.apache.catalina.startup.ContextConfig.processAnnotationsStream(ContextConfig.java:2087)
at org.apache.catalina.startup.ContextConfig.processAnnotationsJar(ContextConfig.java:2033)
at org.apache.catalina.startup.ContextConfig.processAnnotationsUrl(ContextConfig.java:2003)
at org.apache.catalina.startup.ContextConfig.processAnnotations(ContextConfig.java:1956)
at org.apache.catalina.startup.ContextConfig.webConfig(ContextConfig.java:1160)
at org.apache.catalina.startup.ContextConfig.configureStart(ContextConfig.java:769)
at org.apache.catalina.startup.ContextConfig.lifecycleEvent(ContextConfig.java:299)
at org.apache.catalina.util.LifecycleBase.fireLifecycleEvent(LifecycleBase.java:123)
at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5007)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
... 27 more
package com.aspose.email.internal.E;
import com.aspose.email.a.b.b;
import com.aspose.email.a.b.c;
import com.aspose.email.a.b.z;
import com.aspose.email.internal.h.j;
public class d extends f
private String b;
private int c;
private int d;
static char[] a;
public d(String paramString)
if (paramString == null)
throw new c("s");
this.b = paramString;
this.c = 0;
this.d = paramString.length();
public void close()
dispose(true);
protected void dispose(boolean paramBoolean)
this.b = null;
super.dispose(paramBoolean);
public int peek()
if (this.b == null)
a();
if (this.c >= this.d)
return -1;
return this.b.charAt(this.c);
public int read()
if (this.b == null)
a();
if (this.c >= this.d)
return -1;
return this.b.charAt(this.c++);
public int read(char[] paramArrayOfChar, int paramInt1, int paramInt2) (paramInt2 < 0))
throw new com.aspose.email.a.b.d();
int i;
if (this.c > this.d - paramInt2)
i = this.d - this.c;
else
i = paramInt2;
j.a(this.b, this.c, paramArrayOfChar, paramInt1, i);
this.c += i;
return i;
public String readLine()
if (this.b == null)
a();
if (this.c >= this.b.length())
return null;
if (a == null)
a = new char[] 'n', 'r' ;
int i = j.a(this.b, a, this.c);
if (i == -1)
return readToEnd();
int j = (this.b.charAt(i) == 'r') && (i + 1 < this.b.length()) && (this.b.charAt(i + 1) == 'n') ? 1 : 0;
String str = j.b(this.b, this.c, i - this.c);
this.c = (i + (j != 0 ? 2 : 1));
return str;
public String readToEnd()
if (this.b == null)
a();
String str = j.b(this.b, this.c, this.d - this.c);
this.c = this.d;
return str;
static void a()
throw new z("StringReader", "Cannot read from a closed StringReader");
package com.aspose.email.internal.E;
import com.aspose.email.internal.a.t;
import com.aspose.email.internal.h.G;
public abstract class f implements com.aspose.email.a.j
public static f uD = new a();
public void close()
dispose(true);
public void dispose()
dispose(true);
protected void dispose(boolean paramBoolean)
if (paramBoolean)
G.a(this);
public int peek()
return -1;
public int read()
return -1;
public int read(char[] paramArrayOfChar, int paramInt1, int paramInt2)
for (int i = 0; i < paramInt2; i++)
int j;
if ((j = read()) == -1)
return i;
paramArrayOfChar[(paramInt1 + i)] = ((char) j);
return i;
public String readLine()
t localt = new t();
int i;
while (((i = read()) != -1) && (i != 10))
if (i == 13)
if (peek() != 10)
break;
read();
break;
localt.w((char) i);
if ((i == -1) && (localt.b() == 0))
return null;
return localt.toString();
public String readToEnd()
t localt = new t();
int i;
while ((i = read()) != -1)
localt.w((char) i);
return localt.toString();
static final class a extends f
public String readLine()
return null;
public String readToEnd()
return com.aspose.email.internal.h.j.a;
spring-boot deployment jackson tomcat9 cyclic-dependency
spring-boot deployment jackson tomcat9 cyclic-dependency
edited Mar 24 at 11:56
Nithin
asked Mar 23 at 17:34
NithinNithin
2610
2610
Possible duplicate of Java SecurityException: signer information does not match
– Michał Ziober
Mar 23 at 18:15
Hi, Thanks for the update . I was able to resolve those dependencies by excluding few jars. Now, I am stuck with another issue related to cyclic dependency. I am unable to resolve it. I have updated the error logs. Can you please advise ?
– Nithin
Mar 23 at 20:18
Could you show these problematic classes:com.aspose.email.internal.E.d
andcom.aspose.email.internal.E.f
?
– Michał Ziober
Mar 23 at 21:38
Hi, I have added those 2 classes below error logs. Can you please check ?
– Nithin
Mar 24 at 11:59
add a comment |
Possible duplicate of Java SecurityException: signer information does not match
– Michał Ziober
Mar 23 at 18:15
Hi, Thanks for the update . I was able to resolve those dependencies by excluding few jars. Now, I am stuck with another issue related to cyclic dependency. I am unable to resolve it. I have updated the error logs. Can you please advise ?
– Nithin
Mar 23 at 20:18
Could you show these problematic classes:com.aspose.email.internal.E.d
andcom.aspose.email.internal.E.f
?
– Michał Ziober
Mar 23 at 21:38
Hi, I have added those 2 classes below error logs. Can you please check ?
– Nithin
Mar 24 at 11:59
Possible duplicate of Java SecurityException: signer information does not match
– Michał Ziober
Mar 23 at 18:15
Possible duplicate of Java SecurityException: signer information does not match
– Michał Ziober
Mar 23 at 18:15
Hi, Thanks for the update . I was able to resolve those dependencies by excluding few jars. Now, I am stuck with another issue related to cyclic dependency. I am unable to resolve it. I have updated the error logs. Can you please advise ?
– Nithin
Mar 23 at 20:18
Hi, Thanks for the update . I was able to resolve those dependencies by excluding few jars. Now, I am stuck with another issue related to cyclic dependency. I am unable to resolve it. I have updated the error logs. Can you please advise ?
– Nithin
Mar 23 at 20:18
Could you show these problematic classes:
com.aspose.email.internal.E.d
and com.aspose.email.internal.E.f
?– Michał Ziober
Mar 23 at 21:38
Could you show these problematic classes:
com.aspose.email.internal.E.d
and com.aspose.email.internal.E.f
?– Michał Ziober
Mar 23 at 21:38
Hi, I have added those 2 classes below error logs. Can you please check ?
– Nithin
Mar 24 at 11:59
Hi, I have added those 2 classes below error logs. Can you please check ?
– Nithin
Mar 24 at 11:59
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55316527%2fspring-boot-tomcat-deployment-illegal-cyclic-inheritance-dependencies-issue%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55316527%2fspring-boot-tomcat-deployment-illegal-cyclic-inheritance-dependencies-issue%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Possible duplicate of Java SecurityException: signer information does not match
– Michał Ziober
Mar 23 at 18:15
Hi, Thanks for the update . I was able to resolve those dependencies by excluding few jars. Now, I am stuck with another issue related to cyclic dependency. I am unable to resolve it. I have updated the error logs. Can you please advise ?
– Nithin
Mar 23 at 20:18
Could you show these problematic classes:
com.aspose.email.internal.E.d
andcom.aspose.email.internal.E.f
?– Michał Ziober
Mar 23 at 21:38
Hi, I have added those 2 classes below error logs. Can you please check ?
– Nithin
Mar 24 at 11:59