I need to find which jar files are being used in one context,

for example below code can give me some information about sun.boot.class.path


<html>
<%
String classpath = System.getProperty("sun.boot.class.path");
out.println(" " + classpath); %>
</html>




Is there anything like that :

<html>
<%
String classpath = System.getProperty("tomcat.context.class.path");
out.println(" " + classpath); %>
</html>


Any idea ?

Regards.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to