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
  •  | 
  •  

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?

有帮助吗?

解决方案

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>
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top