Details
Description
TomcatInstrumentableClassLoader in spring-instrument-tomcat contains a method override:
@Override protected ResourceEntry findResourceInternal(String name, String path) { ... }
which in Tomcat 7.0.63 no longer exists. Another parameter has been added, and the method signature is now:
protected ResourceEntry findResourceInternal(String name, String path, boolean manifestRequired)
The "overridden" method is never called, so the weaving process fails silently. Issue does not reproduce on Tomcat 7.0.62.