This week's book giveaway is in the General Computing forum. We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line! See this thread for details.
Greetings All, I am getting an usual ClassCast exception in JSP file, which is working very well for some days.This makes me to restart the server. I am in doubt, when an servlet,jsp ,bean working fine for days and in the middle how it began breakdown. i have code in servlet like this. com.StatusBean sbean=new com.StatusBean(); sbean.setMessage("HAHA"); sbean.setValue("DDD"); sbean.setID("100"); request.setAttribute("Status",sbean); getServletContext().getRequestDispatcher("/x.jsp").forward(request,response);
//INjSP <%@ page import="com.StatusBean;"%> System.out.println("1"); com.StatusBean s_Bean=(com.StatusBean)request.getAttribute("Status"); System.out.println("2"); in my statusbean public class StatusBean extends Object implements Serializable{ //only setter and getter methods are here } What i am wondering is , how an application cannot work,which worked continuously for 3 months , in JSP file at line 3 i am getting ClassCast exception lime cannot convert com.StatusBean to com.StatusBean.. I tried to findout what type of object a request holds with getClass().getName() method it is giving com.StatusBean only, But when i am getting exception at line 3.. thanx in advance, aus_rayaku@yahoo.com
What can happen is that if you recompile your JavaBean, the dynamic classloading facility of your webserver reloads the class. This is great, but of course existing instances (say held in the session or request) are no longer compatible and hence you get a ClassCastException. Another possibility is that you somehow have two versions of the bean in your classpath. Could any of these be your problem? Simon
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.
subject: ClassCast Exception of a Bean in JSP file