JavaBeans in JSP -Reg
Hi
While creating the bean class i create the package Mybeans and then i
wrote the bean class and i use that package in jsp page for the
class attribute . when i am calling the JSP page using Tomcat i am getting
package does not exist. sample code below
For java bean class
package Mybeans
class Addition{
..
..
Code for Beans class
--
--
}
When use bean class in the jsp page
<jsp:useBean id="thebean" class="Mybeans.Addition"/>
i am getting the error package doesnt exist. Can any one help me
Thanks in advance

