WebObjects/Web Applications/Development/Common Pitfalls and Troubleshooting

< WebObjects < Web Applications < Development

Debugging Classpath Problems

Chuck Hill

I recently found this useful and thought others might too:

 System.out.println("\nClassPath Follows....\n");
 ClassLoader classLoader = ClassLoader.getSystemClassLoader();
 URL[] urls = ((URLClassLoader)classLoader).getURLs();
 for(int i=0; i<urls.length; i++)
 {
   System.out.println(urls[i].toString() + "\n");
 }

Add this to public static void main(String argv[]) before the call to WOApplication.main(argv, Application.class) and add these imports:

 import java.io.*;
 import java.net.*;

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.