Re: Weblogic Problem ? java.lang.NoSuchMethodError
Posted By:
Software_Framework
Posted On:
Wednesday, May 2, 2001 10:01 AM
App Servers compile JSPs outside for their own VM. If you've changed the support classes that a JSP uses and try to reload the modified JSP, the app server will recompile the JSP successfully but it won't run because the App Server vm has the new version of the JSP .class file but not the new version of the supporting classes. Typically, you can just restart the server to fix this problem. With WebLogic, you may have to redeploy the supporting classes if they are also contained in the WAR/EAR file that the JSP is contained in.
Re: Weblogic Problem ? java.lang.NoSuchMethodError
Posted By:
Luigi_Viggiano
Posted On:
Wednesday, April 11, 2001 09:03 AM
NoSuchMethodError == please recompile *.java and remake the jars
:)
Re: Weblogic Problem ? java.lang.NoSuchMethodError
Posted By:
Johnny_yoo
Posted On:
Wednesday, April 4, 2001 01:09 AM
The problem is solved!
Forgot to put some important classes in my jar files! ;)