Markus Schönhaber wrote:
Level, Haroldo (Jr) wrote:
Im trying to import a class into a JSP file.
At the beginning I got the an error saying "Generated servlet error:
Only a type can be imported. SDTDeal resolves to a package"
After a lot of googling I found I wasn't placing my class files in the
WEB-INF\classes\ directory and my classes weren't public. But after I
fixed all of that I got the following error:
"An error occurred at line: 113 in the jsp file: /SD Tool/CheckNew.jsp
Generated servlet error:
SDTDeal cannot be resolved"
[...]
<%@ page import="SDT.SDTDeal" %>
You should have
WEB-INF\classes\SDT\SDTDeal.class
Is that so?
BTW: case matters.
Regards
mks
---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Looks like you're developing without using a good IDE. Not using one is
actually more time consuming and difficult than using one for java web
development. Besides you will pickup the structure more easily, and it
will be in a portable .war file. I suggest Netbeans. It's free.
Also, look into MVC2 architecture, so you won't need to expose your db
password. After all a jsp is a text file.
- Lou Caudell
---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]