We are seeing an older version of a class being used, although we had the latest one deploy. To scan all JAR files in all subfolders of an application server, how do we write a small shell script that prints out the file name of JARS files in which this specific class is found?
|
Something like:
You can wrap that up like this:
And then |
|||||||||
|
|
Not directly answering your question, but maybe this will solve your problem: you can print out the location (e.g. the jar file) from which a specific class was loaded by adding a simple line to your code:
Then you will know for sure where it comes from. |
|||
|
|
|
If you need result only then you can install agentransack http://www.mythicsoft.com/agentransack/ and do a containing text search. Agentransack searches inside jar and zip files as well. |
|||
|
|
|
You may also want to have a look at the Java tool JarScan. One can search by class name and by package. It helps a lot when Total Commander isn't available and only Java is allowed to execute. |
||||
|
|
|
Now to answer this question here is a simple shell command that did that for us.
|
|||
|
|
|
Years ago I wrote a utility classfind to resolve issues like this. Set your classpath to point to your .jar set, and classfind will tell you in which jars it'll find a particular class.
|
|||
|
|
|
The tool JAR Explorer is pretty useful. It pops open a GUI window with two panels. You can pick a directory, the tool will scan all the JAR files in that directory, then let you search for a specific class. The lower panel then lights up with a list of hits for that class in all the scanned JAR files. |
||||
|
|
|
|||
|
|