• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Migration from Tomcat 7 to 8: WARN ...Failed to scan from classloader hierarchy

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,

We uses an embedded Tomcat in our application when migrating from Tomcat 7 to Tomcat 8.5.3, these kind of lines appears in the log file.
This doesn't seem to prevent Tomcat from starting but I wonder what can cause this:



Any ideas ?

Thanks !

David

 
Saloon Keeper
Posts: 27752
196
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Welcome to the JavaRanch, David!

This is a rather odd path and doubly so because I'm pretty sure that jaxb-impl is part of the JDK itself, so it shouldn't be looking at an independent path.

What I suspect is that one of the components in your webapp has this in its manifest. Someone recently had the same sort of problem you are having and the cause appears to be that Tomcat 8 is attempting to resolve references by using that sort of data and Tomcat 7 did not. Which, technically appears to be a bug of sorts (incomplete feature) in Tomcat 7.

I recommend that you scan your WAR(s) and see if you can backtrack this path reference.
 
David Schreck
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Tim,

Thank you for your quick answer !
We will have a look.

Br,

David
 
reply
    Bookmark Topic Watch Topic
  • New Topic