Maven Jetty spams warning "scanned from multiple locations"

10,981

Solution 1

Lets break it down ...

[WARNING] org.apache.axis2.description.java2wsdl.bytecode.ClassReader scanned from multiple locations:

  • jar:file:///C:/Users/a0763323/.m2/repository/org/apache/axis2/axis2-kernel/1.4.1/axis2-kernel-1.4.1.jar!/org/apache/axis2/description/java2wsdl/bytecode/ClassReader.class,
  • jar:file:///C:/Users/a0763323/.m2/repository/it/aon/WSInfocar/1.2/WSInfocar-1.2.jar!/org/apache/axis2/description/java2wsdl/bytecode/ClassReader.class

You have the class org.apache.axis2.description.java2wsdl.bytecode.ClassReader coming from 2 different JARs (and seemingly on two different versions!)

Judging from your filesystem paths you likely have the following maven dependencies ...

<dependency>
  <groupId>org.apache.axis2</groupId>
  <artifactId>axis2-kernel</artifactId>
  <version>1.4.1</version>
</dependency>

<dependency>
  <groupId>it.aon.WSInfocar</groupId>
  <artifactId>WSInfocar</artifactId>
  <version>1.2</version>
</dependency>

It's unwise in the extreme to have two different versions of the same class on your classpath / classloader (it's very easy to have 1 version be used and then passed to a different class on the other version that will not understand it or be able to use it)

You'll need to resolve, manually, which one you should be using. You might want to ask the developers of the WSInfocar why they are bundling axis in their own artifact as well.

Solution 2

I find this problem solution all day, and if you want ignore the WARN log in jetty, you can try this:

--exec
-Dorg.eclipse.jetty.annotations.AnnotationParser.LEVEL=OFF

append these code in start.ini jetty file, and restart jetty.

Solution 3

I found this question and reply most helpful. I had a conflict with the JDT Core and the Java Eclipse compiler. I went to Properties and clicked on Java Compiler changing one thing at a time and testing. Changing from using JRE 1.8 to JRE 11 run time resolved it for me somewhere in all the things I tested.

I have checked: Enable Project Specific Setting Use Default Compliance Settings (1.8)

This puts up a notice: When selecting 1.8 compliance be sure to have a compatible JRE installed and activated (currently 11). Configure the installed JRE or execution environment or change the build path.

Again, change one thing at a time then test. I specifically went with a 1.8 JRE because I read Java 11 does not ship a JRE. I am still not clear on that subject.

Share:
10,981
Leviand
Author by

Leviand

Full stack software developer since 2005, specialized in Java. Active Kotlin learner.

Updated on June 05, 2022

Comments

  • Leviand
    Leviand about 2 years

    I've found a similar question here , but it points to a plugin that I'm not using (maven-failsafe-plugin), and the configuration that solution is referring to is not applicable for me.

    The problem is that since I've updated my jetty plugin from

    <groupId>org.eclipse.jetty</groupId>
    <artifactId>jetty-maven-plugin</artifactId>
    <version>9.3.9.v20160517</version>
    

    to <version>9.4.11.v20180605</version> , it started to spam hundreds of warnings like

    [WARNING] org.apache.axis2.description.java2wsdl.bytecode.ClassReader scanned from multiple locations: jar:file:///C:/Users/a0763323/.m2/repository/org/apache/axis2/axis2-kernel/1.4.1/axis2-kernel-1.4.1.jar!/org/apache/axis2/description/java2wsdl/bytecode/ClassReader.class, jar:file:///C:/Users/a0763323/.m2/repository/it/aon/WSInfocar/1.2/WSInfocar-1.2.jar!/org/apache/axis2/description/java2wsdl/bytecode/ClassReader.class
    [WARNING] org.apache.axis2.description.java2wsdl.bytecode.MethodTable scanned from multiple locations: jar:file:///C:/Users/a0763323/.m2/repository/org/apache/axis2/axis2-kernel/1.4.1/axis2-kernel-1.4.1.jar!/org/apache/axis2/description/java2wsdl/bytecode/MethodTable.class, jar:file:///C:/Users/a0763323/.m2/repository/it/aon/WSInfocar/1.2/WSInfocar-1.2.jar!/org/apache/axis2/description/java2wsdl/bytecode/MethodTable.class
    [WARNING] org.apache.axis2.description.java2wsdl.bytecode.ParamNameExtractor scanned from multiple locations: jar:file:///C:/Users/a0763323/.m2/repository/org/apache/axis2/axis2-kernel/1.4.1/axis2-kernel-1.4.1
    

    I've searched everywhere but I can't understand neither what that means or how to resolve this.

    I'm using IntelliJ and maven compiler plugin

    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>3.8.0</version>
    

    Thanks

  • Leviand
    Leviand almost 6 years
    Thanks for the reply. I think this could be close to the problem, but in my pom I don't have any explicit import of org.apache.axis2. Could have been imported from another library?
  • Leviand
    Leviand almost 6 years
    And about the bundling: since axis is required for make WSInfocar running, why it's wrong to bundle it inside?
  • Joakim Erdfelt
    Joakim Erdfelt almost 6 years
    The servlet spec scanning of bytecode has to scan all jars that are present for specific things (eg: implementations that are important for startup and annotations to name a few). The use of "import" is an irrelevant indicator if something is used at runtime, so much is dynamically created and executed nowadays.
  • Leviand
    Leviand almost 6 years
    WSInfocar is not build with Maven, POM was created from install:install-file . Could be this the problem?
  • Joakim Erdfelt
    Joakim Erdfelt almost 4 years
    This hides a fatally bad environment, one that will behave randomly, working sometimes, and crashing other times. It is a legit warning that you MUST fix to have a sane environment. Also, turning off ALL of the logging means you'll never know of other warnings.
  • Emmanuel Bourg
    Emmanuel Bourg almost 4 years
    How do you set this when using the jetty:run goal of the Maven plugin?
  • Walfrat
    Walfrat about 2 years