JRat configuration
Hey,
I tried to install and configure JRat a profiling tool. At the last paragraph it says:
"1. Add shiftone-jrat.jar to your application's classpath.
2. Add a system property to configure the JRat handler factory. This requires that a parameter be added to the VM command line. The parameter that needs to be added is shown in the box below.
-Djrat.factory=org.shiftone.jrat.provider.tree.TreeMethodHandlerFactory"
What is meant by the configuration of the JRat handler family?
So this is what I did, I copied the shiftone.jar into the folder where
I already have the packge folder which contain my class files. Then
I tried it this way:
user@Zebulon performance $ ll
total 408
-rwxrwxrwx 1 root root 408255 2005-05-13 15:57 shiftone-jrat.jar
drwxrwxrwx 2 root root8192 2005-05-13 16:04 transform/
user@Zebulon performance $ java -Djrat.factory=org.shiftone.jrat.provider.tree.TreeMethodHandlerFactory transform/ProcessCalculationGrafical
Exception in thread "main" java.lang.NoClassDefFoundError: org/shiftone/jrat/core/HandlerFactory
at transform.Presentation.<clinit>(Presentation.java)
As you can see, it gave me that NoClassDefFoundError.
Sure I don't have any folder in there by the path of org/shiftone/jrat/provider/tree...but how can I fix that?

