Hi, I have written a statement :<%@ page import="MyBean.java" %> in my JSP. MyBean.java is my Bean class located in folder WebApps/EnterUserDataApp folder. How to import this this java file so that i can use the getters and setters of this bean class within my JSP ? I am doing a simple Servlet JSP application without using struts or tag libraries. Please Help
Santosh Nijalingappa
Greenhorn
Joined: Feb 03, 2008
Posts: 3
posted
0
Note: Forgot to mention I am using TomCat Server and my directory structure is as follows: C:\apache-tomcat-5.5.17\webapps\EnterUserDataApp
Within this EnterUserDataApp folder i have my WEB-INF folder and i am placing my JSP, Servlet and bean java file in EnterUserDataApp folder.
Compile MyBean.java class and place compiled class (MyBean.class) into WEB-INF folder of your application.
Also, must look at the directory structure of application deployed on tomcat.
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35253
7
posted
0
Note that the import attribute takes neither a source file name nor a class file name, but a class name. That would be MyBean in your case, plus the appropriate package name in front of it.
Originally posted by Ulf Dittmer: Note that the import attribute takes neither a source file name nor a class file name, but a class name. That would be MyBean in your case, plus the appropriate package name in front of it.