-
Weblogic 9 jsp UseBean noclassdeffound Error (1 messages)
- Posted by: Puneet Garg
- Posted on: February 11 2009 22:26 EST
Title says it all. On my jsp page which works fine otherwise, as soon as include a useBean and try to click on that jsp I get a noClassDefFound for the target bean. I checked the war file, that class is there under WEB-INF/classes and under appropriate path. I am giving fully qualified name in useBean Tag Any ideas? Does this util class needs to be in a seperate jar file ? ThanksThreaded Messages (1)
- Re: Update by Puneet Garg on February 12 2009 12:32 EST
-
Re: Update[ Go to top ]
- Posted by: Puneet Garg
- Posted on: February 12 2009 12:32 EST
- in response to Puneet Garg
Update: This error comes for when trying to access any java class through jsp by using page Import. //this is fine -- no errors MyBean bean = null; //this gives error...noClassDefFound com/tar/MyBean MyBean bean = new MyBean(); Again: This class is present in the WAR file in web-INF...