Is the bean you are accessing part of a package ?
For instance:
com.mycompany.Bean
or are does the class have no package ? Just:
Bean
If the class is not part of a package, you will have problems. Specifically the JSP page will not compile, it will throw exceptions.
The Tomcat server doesn't properly handle classes without packages when referenced in JSP pages. Make sure all your bean classes are part of a package, and you should be all set.
- 0 Users Found This Useful
Related Articles
Tomcat won't recognize when I update (recompile) my classes, what do I do ?
There is an easy way to solve the problem of getting their JSP pages or servlets to recognize...
Where should I put my Java classes ?
Java classes need to be arranged in the proper directories in order for the Tomcat server to find...
HOW TO: Setup Java Servlets in my JSP/Servlet enabled web hosting account ?
To help you get started, we are providing an example web.xml and servlet class you can use to try...
What version of the JDK is installed ?
To see what version of the JDK is installed on your server run the following command that the SSH...
HOW TO: Use the Tomcat Manager to stop, start and restart your JSP/Servlet Applications ?
You can use the Tomcat Manager application to start, stop, reload, etc. your web applications. To...