curiousLearner2010
Programmer
I have deployed a web application in weblogic 8.1 But on server startup i am seeing this error.
Error is thrown for this line in code
TestUtilities.java
--------------------
Class.forName(url);
value 'com.mine.test.GetTransBt' is passed correctly in url.
java.lang.ClassNotFoundException: com.mine.test.GetTransBt
at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:199)
at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoader.java:224)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:141)
at com.test.utilities.TestUtilities(TestUtilities.java:154
Calling class(com.test.utilities.TestUtilities) and called class(com.mine.test.GetTransBt) are in same jar file,different package...why it is not loading ..please help
Error is thrown for this line in code
TestUtilities.java
--------------------
Class.forName(url);
value 'com.mine.test.GetTransBt' is passed correctly in url.
java.lang.ClassNotFoundException: com.mine.test.GetTransBt
at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:199)
at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoader.java:224)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:141)
at com.test.utilities.TestUtilities(TestUtilities.java:154
Calling class(com.test.utilities.TestUtilities) and called class(com.mine.test.GetTransBt) are in same jar file,different package...why it is not loading ..please help