I've got a JSP app that's been running for years built under JDK1.4. I recently upgraded to JDK1.6. When I compiled my Java Bean under JDK1.6, I get a JSP useBean runtime error saying it cannot find the Java Bean. The class is in WEB-INF/classes/com/myOrg/
. If I remove the package statement from the Java Bean and put the class in WEB-INF/classes/ the JSP works! What broke package name resolution between JDK1.4 and JDK1.6?
Start Free Trial