jars referenced in manifest not loaded
Brought to you by:
andrewbwilcox
It is allowed in java to specify the classpath in the manifest by adding a property called Class-Path. For example:
Manifest-Version: 1.0
Class-Path: another.jar
In this case, your classloader does look for classes in the jars referenced.
Logged In: YES
user_id=1345666
Originator: NO
JIP doesn't have it's own classloader. It uses the application classloader per the Java Agent spec. Please give more information about the problem you're having.
Logged In: YES
user_id=1672994
Originator: NO
I think I encounter same issue with "Nobody/Anonymous - nobody " , if we developing eclipse plugin project, eclipse will use it own classloader for every plugin. JIP can only profile the classes with package org.eclipse, but for my own package, with loaded separately, JIP cannot profile.
In fact I have another tool hitting this issue... Not sure if you have any idea about that