> Caused by: java.lang.ClassNotFoundException: GenericObjectPool > at java.net.URLClassLoader.findClass(URLClassLoader.java:434) > at java.lang.ClassLoader.loadClass(ClassLoader.java:653) > at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:358)
1. Identify the class causing a problem. You already did this: GenericObjectPool 2. Identify the section of your code which is utilizing this class (in your main code or test code). 3. Adjust dependencies as needed so this class is included in your project. You probably have a reference in your code like Class.forName(GenericObjectPool) in your test source code which is causing troubles at runtime. Wayne --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
