java.lang.ClassFormatError: JVMCFRE074 no Code attribute specified; class=javax/servlet/http/HttpServlet, method=<init>()V, pc=0?

StackOverflow https://stackoverflow.com//questions/25076045

  •  02-01-2020
  •  | 
  •  

Question

I am getting this error while starting the server? 'java.lang.ClassFormatError: JVMCFRE074 no Code attribute specified; class=javax/servlet/http/HttpServlet, method=()V, pc=0'

Can anybody help me to sort out this?

Was it helpful?

Solution

Try excluding javaee-api from dependencies:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <configuration>
      <classpathDependencyExcludes>
        <classpathDependencyExclude>javax:javaee-api</classpathDependencyExclude>
      </classpathDependencyExcludes>
    </configuration>
  </plugin>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top