I'm trying to use a Bean in my JSP page(running on tomcat), but everytime I try to run it says the package doesn't exist, I've placed my package in web-inf/classes/packageName and my class inside of that... The error I get is:
C:\Programmer\Apache Group\Tomcat 4.1\work\Standalone\localhost\_\index_jsp.java:47: package m does not exist
m.Person person = null;
^
Does anyone have any idea what might be wrong? I've been googling for 30 minutes now without luck - and I've tried reinstalling tomcat... my JSP code for calling the bean is:
<jsp:useBean id="person" class="m.Person" scope="session" />
<jsp:setProperty name="person" property="*" />
<Moderator added green checkmark in the first thread>




Reply With Quote